Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
feudal
feudalBackend
Commits
aa512383
Commit
aa512383
authored
Apr 07, 2018
by
Lukas Burgey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some urls
parent
4eea6fc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
django_backend/backend/auth/v1/urls.py
django_backend/backend/auth/v1/urls.py
+4
-4
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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