mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 15:30: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
507 B
Python
18 lines
507 B
Python
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
app_name='seat'
|
|
|
|
module_urls = [
|
|
# SeAT Service Control
|
|
url(r'^activate/$', views.activate_seat, name='activate'),
|
|
url(r'^deactivate/$', views.deactivate_seat, name='deactivate'),
|
|
url(r'^reset_password/$', views.reset_seat_password, name='reset_password'),
|
|
url(r'^set_password/$', views.set_seat_password, name='set_password'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^seat/', include((module_urls, app_name), namespace=app_name)),
|
|
]
|