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