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