Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
feudal
feudalBackend
Commits
aa512383
Commit
aa512383
authored
Apr 07, 2018
by
Lukas Burgey
Browse files
Fix some urls
parent
4eea6fc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
django_backend/backend/auth/v1/urls.py
View file @
aa512383
...
...
@@ -3,10 +3,10 @@ from django.views.decorators.csrf import csrf_exempt
from
.
import
views
,
client_views
URLPATTERNS
=
[
url
(
r
'^info
/
'
,
views
.
AuthInfo
.
as_view
()),
url
(
r
'^request
/
'
,
views
.
Auth
.
as_view
()),
url
(
r
'^callback
/
'
,
views
.
AuthCallback
.
as_view
()),
url
(
r
'^logout
/
'
,
views
.
LogoutView
.
as_view
()),
url
(
r
'^info'
,
views
.
AuthInfo
.
as_view
()),
url
(
r
'^request'
,
views
.
Auth
.
as_view
()),
url
(
r
'^callback'
,
views
.
AuthCallback
.
as_view
()),
url
(
r
'^logout'
,
views
.
LogoutView
.
as_view
()),
url
(
r
'^client/user'
,
csrf_exempt
(
client_views
.
user_endpoint
)),
url
(
r
'^client/vhost'
,
csrf_exempt
(
client_views
.
vhost
)),
url
(
r
'^client/resource'
,
csrf_exempt
(
client_views
.
resource
)),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment