mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
042e766be1
This test requires that the admin urls are added to the test configuration.
8 lines
204 B
Python
8 lines
204 B
Python
from django.conf.urls import include, url
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
url(r'^helpdesk/', include('helpdesk.urls', namespace='helpdesk')),
|
|
url(r'^admin/', admin.site.urls),
|
|
]
|