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