diff options
author | Chocobozzz <me@florianbigard.com> | 2023-01-20 15:34:01 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-01-20 15:34:01 +0100 |
commit | 4115f20084f302f497be9cb12237564679ca54ec (patch) | |
tree | 74cf8f5b3884edeb0b47b529cf04b306cd12b23d /client/src/app/shared | |
parent | e854d57bed56bcbba4d191af54125ae6dd569a88 (diff) | |
download | PeerTube-4115f20084f302f497be9cb12237564679ca54ec.tar.gz PeerTube-4115f20084f302f497be9cb12237564679ca54ec.tar.zst PeerTube-4115f20084f302f497be9cb12237564679ca54ec.zip |
Add ability to not send an email for registration
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/form-validators/form-validator.model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/form-validators/form-validator.model.ts b/client/src/app/shared/form-validators/form-validator.model.ts index 31c253b9b..1e4bba86b 100644 --- a/client/src/app/shared/form-validators/form-validator.model.ts +++ b/client/src/app/shared/form-validators/form-validator.model.ts | |||
@@ -12,5 +12,5 @@ export type BuildFormArgument = { | |||
12 | } | 12 | } |
13 | 13 | ||
14 | export type BuildFormDefaultValues = { | 14 | export type BuildFormDefaultValues = { |
15 | [ name: string ]: number | string | string[] | BuildFormDefaultValues | 15 | [ name: string ]: boolean | number | string | string[] | BuildFormDefaultValues |
16 | } | 16 | } |