Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
webui: create 'Users' level in Configuration
  • Loading branch information
perexg committed Sep 22, 2015
1 parent b956daf commit ec939da
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/webui/static/app/tvheadend.js
Expand Up @@ -391,15 +391,25 @@ function accessUpdate(o) {
items: []
});


tvheadend.baseconf(general);
tvheadend.imgcacheconf(general);
tvheadend.satipsrvconf(general);

cp.add(general);

tvheadend.acleditor(cp);
tvheadend.passwdeditor(cp);
/* Users */
var users = new Ext.TabPanel({
activeTab: 0,
autoScroll: true,
title: _('Users'),
iconCls: 'group',
items: []
});

tvheadend.acleditor(users);
tvheadend.passwdeditor(users);

cp.add(users);

/* DVB inputs, networks, muxes, services */
var dvbin = new Ext.TabPanel({
Expand Down

0 comments on commit ec939da

Please sign in to comment.