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