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