blur-admin/src/app/pages/notifications/notifications.module.js

26 lines
554 B
JavaScript

/**
* @author v.lugovsky
* created on 16.12.2015
*/
(function () {
'use strict';
angular.module('BlurAdmin.pages.notifications', [])
.config(routeConfig);
/** @ngInject */
function routeConfig($stateProvider) {
$stateProvider
.state('ui.notifications', {
url: '/notifications',
templateUrl: 'app/pages/notifications/notifications.html',
controller: 'NotificationsPageCtrl',
title: 'Notifications',
sidebarMeta: {
order: 700,
},
});
}
})();