mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Enforce first name & last name policies
This commit is contained in:
8
assets/js/typings/ServerConfig.d.ts
vendored
8
assets/js/typings/ServerConfig.d.ts
vendored
@ -33,6 +33,13 @@ declare interface ConversationPolicy {
|
||||
writing_event_lifetime: number,
|
||||
}
|
||||
|
||||
declare interface AccountInformationPolicy {
|
||||
min_first_name_length: number,
|
||||
max_first_name_length: number,
|
||||
min_last_name_length: number,
|
||||
max_last_name_length: number,
|
||||
}
|
||||
|
||||
declare interface StaticServerConfig {
|
||||
terms_url: string,
|
||||
privacy_policy_url: string,
|
||||
@ -41,4 +48,5 @@ declare interface StaticServerConfig {
|
||||
password_policy: PasswordPolicy,
|
||||
data_conservation_policy: DataConservationPolicySettings,
|
||||
conversations_policy: ConversationPolicy,
|
||||
account_info_policy: AccountInformationPolicy,
|
||||
}
|
Reference in New Issue
Block a user