Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Djangoldp Account
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Startin blox
djangoldp-packages
Djangoldp Account
Commits
786e2f83
Commit
786e2f83
authored
Sep 18, 2019
by
Jean-Baptiste
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: move login url to /auth/login/
parent
b4ff0b09
Pipeline
#5423
passed with stage
in 27 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
README.md
README.md
+1
-1
djangoldp_account/djangoldp_urls.py
djangoldp_account/djangoldp_urls.py
+2
-2
No files found.
README.md
View file @
786e2f83
...
...
@@ -27,7 +27,7 @@ DJANGOLDP_PACKAGES = [
'djangoldp_account',
...
]
LOGIN_URL = '/a
ccounts
/login/'
LOGIN_URL = '/a
uth
/login/'
OIDC_USERINFO = 'djangoldp_account.settings.userinfo'
OIDC_REGISTRATION_ENDPOINT_REQ_TOKEN = False
...
...
djangoldp_account/djangoldp_urls.py
View file @
786e2f83
...
...
@@ -16,8 +16,8 @@ urlpatterns = [
LDPViewSet
.
urls
(
model
=
Group
,
fields
=
[
'@id'
,
'name'
,
'user_set'
],
permission_classes
=
getattr
(
settings
,
'GROUP_PERMISSION_CLASSES'
,
[
LDPPermissions
]),
)),
url
(
r'^a
ccounts
/'
,
include
(
'django_registration.backends.activation.urls'
)),
url
(
r'^a
ccounts
/'
,
include
(
'django.contrib.auth.urls'
)),
url
(
r'^a
uth
/'
,
include
(
'django_registration.backends.activation.urls'
)),
url
(
r'^a
uth
/'
,
include
(
'django.contrib.auth.urls'
)),
url
(
r'^accounts/'
,
LDPViewSet
.
urls
(
model
=
Account
,
permission_classes
=
[
LDPPermissions
])),
url
(
r'^chat-profile/'
,
LDPViewSet
.
urls
(
model
=
ChatProfile
,
permission_classes
=
[
LDPPermissions
])),
url
(
r'^oidc/login/callback/?$'
,
RPLoginCallBackView
.
as_view
(),
name
=
'oidc_login_callback'
),
...
...
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