aboutsummaryrefslogtreecommitdiffstats
path: root/app/main/dashboard/about/about.module.js
blob: c447f6aadf10ab8009bef14ce5c204b1717b1951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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'
        });

    }

})();