등록 객체 구조
예시
# Example Registration Object Structure
registration:
socialLogins: ["google", "facebook", "github", "discord", "openid"]
allowedDomains:
- "gmail.com"
- "protonmail.com"socialLogins
키:
| Key | Type | Description | Example |
|---|---|---|---|
| socialLogins | Array of Strings | 사용 가능한 소셜 로그인 제공업체와 해당 표시 순서를 정의합니다. | 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. |
예시:
socialLogins: ["google", "facebook", "github", "discord", "openid"]allowedDomains
키:
| Key | Type | Description | Example |
|---|---|---|---|
| allowedDomains | Array of Strings | 등록을 허용할 이메일 도메인을 지정하는 목록입니다. | Users with email domains not listed will be restricted from registering. |
필수
예시:
allowedDomains:
- "gmail.com"
- "protonmail.com"이 가이드는 어떤가요?