Estrutura do Objeto de Registro
Exemplo
# Example Registration Object Structure
registration:
socialLogins: ["google", "facebook", "github", "discord", "openid"]
allowedDomains:
- "gmail.com"
- "protonmail.com"socialLogins
Chave:
| Key | Type | Description | Example |
|---|---|---|---|
| socialLogins | Array of Strings | Define os provedores de login social disponĆveis e sua ordem de exibição. | 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. |
Exemplo:
socialLogins: ["google", "facebook", "github", "discord", "openid"]allowedDomains
Chave:
| Key | Type | Description | Example |
|---|---|---|---|
| allowedDomains | Array of Strings | Uma lista que especifica os domĆnios de e-mail permitidos para registro. | Users with email domains not listed will be restricted from registering. |
Obrigatório
Exemplo:
allowedDomains:
- "gmail.com"
- "protonmail.com"Como estĆ” este guia?