Expose views for Raw Permissions, DataSync Threads
This commit is contained in:
parent
4f54237aef
commit
04d9b573c2
|
@ -253,6 +253,11 @@ def simple_menus(request):
|
||||||
'url': url('roles'),
|
'url': url('roles'),
|
||||||
'perm': 'roles.list',
|
'perm': 'roles.list',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'title': "Raw Permissions",
|
||||||
|
'url': url('permissions'),
|
||||||
|
'perm': 'permissions.list',
|
||||||
|
},
|
||||||
{'type': 'sep'},
|
{'type': 'sep'},
|
||||||
{
|
{
|
||||||
'title': "App Settings",
|
'title': "App Settings",
|
||||||
|
@ -275,10 +280,15 @@ def simple_menus(request):
|
||||||
'perm': 'settings.list',
|
'perm': 'settings.list',
|
||||||
},
|
},
|
||||||
{'type': 'sep'},
|
{'type': 'sep'},
|
||||||
|
{
|
||||||
|
'title': "DataSync Threads",
|
||||||
|
'url': url('datasync'),
|
||||||
|
'perm': 'datasync.list',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'title': "DataSync Changes",
|
'title': "DataSync Changes",
|
||||||
'url': url('datasyncchanges'),
|
'url': url('datasyncchanges'),
|
||||||
'perm': 'datasync.list',
|
'perm': 'datasync_changes.list',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'title': "Importing / Exporting",
|
'title': "Importing / Exporting",
|
||||||
|
|
|
@ -43,6 +43,7 @@ def includeme(config):
|
||||||
config.include('tailbone.views.datasync')
|
config.include('tailbone.views.datasync')
|
||||||
config.include('tailbone.views.email')
|
config.include('tailbone.views.email')
|
||||||
config.include('tailbone.views.messages')
|
config.include('tailbone.views.messages')
|
||||||
|
config.include('tailbone.views.permissions')
|
||||||
config.include('tailbone.views.reportcodes')
|
config.include('tailbone.views.reportcodes')
|
||||||
config.include('tailbone.views.reports')
|
config.include('tailbone.views.reports')
|
||||||
config.include('tailbone.views.roles')
|
config.include('tailbone.views.roles')
|
||||||
|
|
Loading…
Reference in a new issue