-
Notifications
You must be signed in to change notification settings - Fork 931
config properties username
v1.2.1
object
(username)
Property | Type | Required | Nullable | Defined by |
---|---|---|---|---|
acquire_on_login | boolean |
Optional | cannot be null | Config |
acquire_on_registration | boolean |
Optional | cannot be null | Config |
enabled | boolean |
Optional | cannot be null | Config |
max_length | integer |
Optional | cannot be null | Config |
min_length | integer |
Optional | cannot be null | Config |
optional | boolean |
Optional | cannot be null | Config |
use_as_login_identifier | boolean |
Optional | cannot be null | Config |
acquire_on_login
determines whether users, provided that they do not already have set a username,
are prompted to provide a username on login.
acquire_on_login
-
is optional
-
cannot be null
boolean
The default value is:
true
acquire_on_registration
determines whether users are prompted to provide a username on registration.
acquire_on_registration
-
is optional
-
cannot be null
boolean
The default value is:
true
enabled
determines whether users can set a unique username.
Usernames can contain letters (a-z,A-Z), numbers (0-9), and underscores.
enabled
-
is optional
-
cannot be null
boolean
max_length
specifies the maximum allowed length of a username.
max_length
-
is optional
-
cannot be null
integer
The default value is:
32
min_length
specifies the minimum length of a username.
min_length
-
is optional
-
cannot be null
integer
The default value is:
3
optional
determines whether users must provide a username when prompted. The username can only be changed but
not deleted if usernames are required (optional: false
).
optional
-
is optional
-
cannot be null
boolean
The default value is:
true
use_as_login_identifier
determines whether usernames, if enabled, can be used for logging in.
use_as_login_identifier
-
is optional
-
cannot be null
boolean
The default value is:
true