Struktur des Registrierungsobjekts
Beispiel
# Example Registration Object Structure
registration:
socialLogins: ["google", "facebook", "github", "discord", "openid"]
allowedDomains:
- "gmail.com"
- "protonmail.com"socialLogins
Schlüssel:
| Key | Type | Description | Example |
|---|---|---|---|
| socialLogins | Array of Strings | Definiert die verfügbaren Social-Login-Anbieter und deren Anzeigereihenfolge. | The order of the providers in the list determines their appearance order on the login/registration page. Each provider listed must be properly configured within the system to be active and available for users. This configuration allows for a tailored authentication experience, emphasizing the most relevant or preferred social login options for your user base. |
Beispiel:
socialLogins: ["google", "facebook", "github", "discord", "openid"]allowedDomains
Schlüssel:
| Key | Type | Description | Example |
|---|---|---|---|
| allowedDomains | Array of Strings | Eine Liste zur Festlegung der erlaubten E-Mail-Domains für die Registrierung. | Users with email domains not listed will be restricted from registering. |
Erforderlich
Beispiel:
allowedDomains:
- "gmail.com"
- "protonmail.com"Wie finden Sie diese Anleitung?