d74290036e
Cleaned up logout redirects Added suburbs admin page back. Wasn't able to create new suburbs Made active status check to any traveller save function
10 lines
307 B
Python
10 lines
307 B
Python
from django.urls import path
|
|
|
|
from .views import azure_auth_callback, azure_auth_login, azure_auth_logout
|
|
|
|
app_name = "auth"
|
|
urlpatterns = [
|
|
path("login", azure_auth_login, name="login"),
|
|
path("logout", azure_auth_logout, name="logout"),
|
|
path("callback", azure_auth_callback, name="callback"),
|
|
] |