(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.customer.home.rentpermonth') .config(rentpermonthConfig); /* @ngInject */ function rentpermonthConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('customer.rentpermonth', { url: '/customer/rentpermonth', views: { 'content': { templateUrl: 'app/layout/user/customer/home/rentpermonth/rentpermonth.tmpl.html', controller: 'rentpermonthController', controllerAs: 'vm' } } }); } })();