mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 20:40:17 +02:00
Implement url hooks. Many apps are now removable. Default to assuming services have been migrated.
11 lines
319 B
Python
11 lines
319 B
Python
from __future__ import unicode_literals
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^overview/$', views.permissions_overview, name='overview'),
|
|
url(r'^audit/(?P<app_label>[\w\-_]+)/(?P<model>[\w\-_]+)/(?P<codename>[\w\-_]+)/$', views.permissions_audit,
|
|
name='audit'),
|
|
]
|