Expose views for datasync status, luigi jobs
This commit is contained in:
parent
a6871fac95
commit
9fc9138bce
|
@ -300,6 +300,16 @@ def simple_menus(request):
|
|||
'route': 'datasyncchanges',
|
||||
'perm': 'datasync_changes.list',
|
||||
},
|
||||
{
|
||||
'title': "DataSync Status",
|
||||
'route': 'datasync.status',
|
||||
'perm': 'datasync.status',
|
||||
},
|
||||
{
|
||||
'title': "Luigi Jobs",
|
||||
'route': 'luigi',
|
||||
'perm': 'luigi.list',
|
||||
},
|
||||
{
|
||||
'title': "Tables",
|
||||
'route': 'tables',
|
||||
|
|
|
@ -60,3 +60,6 @@ def includeme(config):
|
|||
|
||||
# generate new project
|
||||
config.include('tailbone.views.projects')
|
||||
|
||||
# admin views
|
||||
config.include('tailbone.views.luigi')
|
||||
|
|
Loading…
Reference in a new issue