This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/urls.py

13 lines
337 B
Python

from django.urls import path
from . import views
app_name = 'accounts'
urlpatterns = [
path('', views.me, name='me'),
path('me/', views.me, name='me_exp'),
path('login/', views.auth_login, name='login'),
path('logout/', views.auth_logout, name='logout'),
path('register/', views.auth_register, name='register'),
]