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