(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.customerLogin.findpassword') .config(customerfindpasswordConfig); /* @ngInject */ function customerfindpasswordConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('main.customerfindpassword', { url: '/customerfindpassword', views: { 'content': { templateUrl: 'app/layout/user/customerLogin/findpassword/findpassword.tmpl.html', controller: 'customerfindpasswordController', controllerAs: 'vm' } } }); } })();