Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduling-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SMASCH
scheduling-system
Merge requests
!466
Add webauth
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Add webauth
add-webauth
into
master
Overview
23
Commits
14
Pipelines
8
Changes
10
Open
Dennis Asamoah
requested to merge
add-webauth
into
master
2 months ago
Overview
23
Commits
14
Pipelines
8
Changes
10
Expand
Edited
2 months ago
by
Dennis Asamoah
0
0
Merge request reports
Compare
master
version 7
98b16007
1 month ago
version 6
0cea7835
1 month ago
version 5
92025c8b
1 month ago
version 4
4601be4e
1 month ago
version 3
0b2799a9
2 months ago
version 2
51dae2c4
2 months ago
version 1
365477ff
2 months ago
master (HEAD)
and
latest version
latest version
beb3931a
14 commits,
1 month ago
version 7
98b16007
13 commits,
1 month ago
version 6
0cea7835
12 commits,
1 month ago
version 5
92025c8b
11 commits,
1 month ago
version 4
4601be4e
10 commits,
1 month ago
version 3
0b2799a9
7 commits,
2 months ago
version 2
51dae2c4
6 commits,
2 months ago
version 1
365477ff
5 commits,
2 months ago
10 files
+
114
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
smash/smash/local_settings.py.template
+
11
−
1
Options
@@ -12,6 +12,16 @@ EMAIL_HOST_PASSWORD = ''
EMAIL_PORT = 25
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
# WEBAUTHN SETTINGS
# Name of the Relying Party (RP) that will appear to the user during WebAuthn registration/authentication.
# This is typically your application name or organization name.
TWO_FACTOR_WEBAUTHN_RP_NAME = "Smasch" # Replace "Smasch" with your desired RP display name.
# Relying Party Identifier (RP ID) used to identify your application during WebAuthn operations.
# Typically, this should be your domain name without "https://" or "http://".
# Example: "example.com" if your application is hosted at "https://example.com".
TWO_FACTOR_WEBAUTHN_RP_ID = "your-domain.com" # change to your domain name
ALLOWED_HOSTS = ['your.domain.com', 'localhost']
DATABASES = {
@@ -93,4 +103,4 @@ AUTH_LDAP_BASE_DN = "cn=users,cn=accounts,dc=uni,dc=lu"
# In order to support a prefix in the path, we should define the following variable SMASCH_PATH_PREFIX and override the STATIC_URL and MEDIA_URL
# SMASCH_PATH_PREFIX = "smasch/"
# STATIC_URL = "/smasch/static/"
# MEDIA_URL = "/smasch/media/"
\ No newline at end of file
# MEDIA_URL = "/smasch/media/"
Loading