registration - Fluid Topics - 3.7

Fluid Topics Configuration and Administration Guide

Category
Reference Guides
Audience
public
Version
3.7

The "registration" parameter of the authentication object is used to configure the registration parameter. It applies only to the internal realm and is optional. If unset, the default value is "false".

It is composed of the following elements:

  • "type": declares the type of registration among the following:
    • "PUBLIC": Registration is open. Anybody can register with an email address.
    • "VERIFIED": Registration is open but accounts must be validated via an email. It ensures email address is valid.
    • "CLOSED": Registration is closed. Only administrators can register users.
  • "allowedEmailDomains": declares a list of email domains allowed to be registered. If the list is empty, all domains are accepted.

Example

{
"ui": {
...
"authentication": {
"registration": {
"type": "VERIFIED",
"allowedEmailDomains": [
"antidot.net",
"fluidtopics.net"
]
},
...
},
...
}
}