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