mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-11 14:40:27 +01:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
'use strict';
|
|
|
|
// Configuring the Articles module
|
|
angular.module('users.admin').run(['Menus',
|
|
function (Menus) {
|
|
Menus.addSubMenuItem('topbar', 'admin', {
|
|
title: 'Manage Users',
|
|
state: 'admin.users'
|
|
});
|
|
}
|
|
]);
|