mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 00:40:16 +02:00
Temporarily use latest snapshot for esi for dj20 Correct admin urls include Manually correct old ts3 table migration Remove obsolete services migrations Remove bootstrap pagination package Fix url namespacing
18 lines
508 B
Python
18 lines
508 B
Python
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
app_name = 'ips4'
|
|
|
|
module_urls = [
|
|
# IPS4 Service Control
|
|
url(r'^activate/$', views.activate_ips4, name='activate'),
|
|
url(r'^deactivate/$', views.deactivate_ips4, name='deactivate'),
|
|
url(r'^reset_password/$', views.reset_ips4_password, name='reset_password'),
|
|
url(r'^set_password/$', views.set_ips4_password, name='set_password'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^ips4/', include((module_urls, app_name), namespace=app_name))
|
|
]
|