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