1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-07-09 14:50:19 +02:00

Start implementation of OAuth client

This commit is contained in:
2021-11-04 11:29:03 +01:00
parent faf697d3cf
commit e2aa645bbf
7 changed files with 139 additions and 34 deletions

View File

@ -8,5 +8,6 @@ from . import views
app_name = 'users'
urlpatterns = [
url(r'^edit_info/$', views.edit_info, name='edit-info'),
url('login/', views.LoginView.as_view(), name='login'),
url('authorize/', views.AuthorizeView.as_view(), name='auth'),
]