1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 06:53:04 +00:00
med/users/urls.py

14 lines
352 B
Python
Raw Normal View History

2019-08-02 14:57:53 +02:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2017-2019 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.conf.urls import url
from . import views
2017-06-23 20:09:50 +02:00
app_name = 'users'
urlpatterns = [
2021-11-04 11:29:03 +01:00
url('login/', views.LoginView.as_view(), name='login'),
url('authorize/', views.AuthorizeView.as_view(), name='auth'),
]