Switch to unified view
a/Allura/allura/app.py | b/Allura/allura/app.py | ||
---|---|---|---|
... |
... |
||
290 | def __init__(self, app): |
290 | def __init__(self, app): |
291 | self.app = app |
291 | self.app = app |
292 | 292 | ||
293 | @expose() |
293 | @expose() |
294 | def index(self, **kw): |
294 | def index(self, **kw): |
295 | return permanent_redirect('permissions')
|
295 | permanent_redirect('permissions') |
296 | 296 | ||
297 | @expose('jinja:allura:templates/app_admin_permissions.html') |
297 | @expose('jinja:allura:templates/app_admin_permissions.html') |
298 | @without_trailing_slash |
298 | @without_trailing_slash |
299 | def permissions(self): |
299 | def permissions(self): |
300 | from ext.admin.widgets import PermissionCard |
300 | from ext.admin.widgets import PermissionCard |