mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-24 08:09:16 +01:00
Update the core module to implement the style guidelines. Reduce size of init.js - moved filter logic out to it's own config. Rename Menus to menuService
18 lines
330 B
JavaScript
18 lines
330 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('users.admin')
|
|
.run(menuConfig);
|
|
|
|
menuConfig.$inject = ['menuService'];
|
|
|
|
// Configuring the Users module
|
|
function menuConfig(menuService) {
|
|
menuService.addSubMenuItem('topbar', 'admin', {
|
|
title: 'Manage Users',
|
|
state: 'admin.users'
|
|
});
|
|
}
|
|
}());
|