Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. 'use strict';
  2.  
  3. // Configuring the Articles module
  4. angular.module('users.admin').run(['Menus',
  5. function (Menus) {
  6. Menus.addSubMenuItem('topbar', 'admin', {
  7. title: 'Manage Users',
  8. state: 'admin.users'
  9. });
  10.  
  11. }
  12. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement