mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 07:09:16 +02:00
8 lines
217 B
Python
8 lines
217 B
Python
from django.conf.urls import url
|
|
|
|
from . import auth_views
|
|
|
|
urlpatterns = [
|
|
url(r"^login/$", auth_views.LoginView.as_view(), name="login"),
|
|
url(r"^logout/$", auth_views.LogoutView.as_view(), name="logout"),
|
|
]
|