aboutsummaryrefslogtreecommitdiffstats
path: root/app/main/dashboard/home/home.module.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/dashboard/home/home.module.js')
-rw-r--r--app/main/dashboard/home/home.module.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/main/dashboard/home/home.module.js b/app/main/dashboard/home/home.module.js
new file mode 100644
index 0000000..e496791
--- /dev/null
+++ b/app/main/dashboard/home/home.module.js
@@ -0,0 +1,25 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp.dashboard.home', [])
+ .config(config);
+
+ function config($stateProvider) {
+
+ $stateProvider
+ .state('dcae1.app.home', {
+ url: '/home',
+ views: {
+ 'content@dcae.app': {
+ templateUrl: 'main/dashboard/home/home.html',
+ controller: 'DashboardHomeController as vm'
+ }
+ },
+ bodyClass: 'home'
+ });
+
+ }
+
+})();