summaryrefslogtreecommitdiffstats
path: root/app/main/dashboard/home/home.module.js
blob: e496791bceb2ab8a329b65be38e32e60c4bbebdd (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
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'
            });

    }

})();