Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
4743b747
Commit
4743b747
authored
3 years ago
by
Tom Teichler
Committed by
root
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix socialaccount settings
parent
8a1325fa
No related branches found
No related tags found
1 merge request
!413
Resolve "User registration"
Pipeline
#10739
failed
3 years ago
Stage: test
Stage: build
Stage: publish
Stage: docker
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
aleksis/core/settings.py
+1
-5
1 addition, 5 deletions
aleksis/core/settings.py
with
1 addition
and
5 deletions
aleksis/core/settings.py
+
1
−
5
View file @
4743b747
...
...
@@ -283,11 +283,7 @@ if _SOCIALACCOUNT_PROVIDERS:
# Add configured social auth providers to INSTALLED_APPS
for
provider
,
config
in
SOCIALACCOUNT_PROVIDERS
.
items
():
INSTALLED_APPS
.
append
(
f
"
allauth.socialaccount.providers.
{
provider
}
"
)
for
k
in
config
:
kupper
=
k
.
upper
()
if
k
!=
kupper
:
config
[
kupper
]
=
config
[
k
]
del
config
[
k
]
config
=
{
k
.
upper
():
v
for
k
,
v
in
config
.
items
()}
# Configure custom forms
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment