mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-07-08 19:24:17 +02:00
22 lines
450 B
JavaScript
22 lines
450 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
// Configuring the Articles Admin module
|
|
angular
|
|
.module('messages.admin')
|
|
.run(menuConfig);
|
|
|
|
menuConfig.$inject = ['menuService'];
|
|
|
|
function menuConfig(menuService) {
|
|
menuService.addSubMenuItem('topbar', 'admin', {
|
|
title: 'MENU_ADMIN_MESSAGES',
|
|
state: 'admin.messages',
|
|
faIcon: 'fa-podcast',
|
|
faClass: 'text-mt',
|
|
position: 10,
|
|
divider: true
|
|
});
|
|
}
|
|
}());
|