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