mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-06 07:06:19 +01:00
* Added in_organisation check to EveCharacter model * Basic name formatter * Switch mumble service to use name formatter * Squash services migrations * Add name to example service to allow it to be used in tests * Add name formatter to services * Add abstract views, model, form for services modules * Refactor mumble service to new style * Don't set credentials if setting a provided password * Add success message to set password view
18 lines
573 B
Python
18 lines
573 B
Python
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
app_name = 'mumble'
|
|
|
|
module_urls = [
|
|
# Mumble service control
|
|
url(r'^activate/$', views.CreateAccountMumbleView.as_view(), name='activate'),
|
|
url(r'^deactivate/$', views.DeleteMumbleView.as_view(), name='deactivate'),
|
|
url(r'^reset_password/$', views.ResetPasswordMumbleView.as_view(), name='reset_password'),
|
|
url(r'^set_password/$', views.SetPasswordMumbleView.as_view(), name='set_password'),
|
|
]
|
|
|
|
urlpatterns = [
|
|
url(r'^mumble/', include((module_urls, app_name), namespace=app_name))
|
|
]
|