mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 14:00:17 +02:00
Addresses #683 Install instructions have people aliasing `/market/` to the alliance market app which prevents access to the market action URLs.
17 lines
566 B
Python
17 lines
566 B
Python
from __future__ import unicode_literals
|
|
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
module_urls = [
|
|
# Alliance Market Control
|
|
url(r'^activate/$', views.activate_market, name='auth_activate_market'),
|
|
url(r'^deactivate/$', views.deactivate_market, name='auth_deactivate_market'),
|
|
url(r'^reset_password/$', views.reset_market_password, name='auth_reset_market_password'),
|
|
url(r'^set_password/$', views.set_market_password, name='auth_set_market_password'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^evernus-market/', include(module_urls))
|
|
]
|