aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins
diff options
context:
space:
mode:
authormadmath03 <mb.mathieu.brunot@gmail.com>2020-11-27 19:51:25 +0000
committerChocobozzz <chocobozzz@cpy.re>2020-11-30 14:49:44 +0100
commit972de8f111fcacf523cf33062dd734e498df1081 (patch)
tree3b616a77401bd9897d40cbc8cc128242457359ec /shared/models/plugins
parentee663cce0027167c29279863abde477c9c0a2826 (diff)
downloadPeerTube-972de8f111fcacf523cf33062dd734e498df1081.tar.gz
PeerTube-972de8f111fcacf523cf33062dd734e498df1081.tar.zst
PeerTube-972de8f111fcacf523cf33062dd734e498df1081.zip
:sparkles: Add input-password #3375
Diffstat (limited to 'shared/models/plugins')
-rw-r--r--shared/models/plugins/register-client-form-field.model.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/models/plugins/register-client-form-field.model.ts b/shared/models/plugins/register-client-form-field.model.ts
index ec333e8d6..641d7490c 100644
--- a/shared/models/plugins/register-client-form-field.model.ts
+++ b/shared/models/plugins/register-client-form-field.model.ts
@@ -1,7 +1,7 @@
1export interface RegisterClientFormFieldOptions { 1export interface RegisterClientFormFieldOptions {
2 name: string 2 name: string
3 label: string 3 label: string
4 type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced' 4 type: 'input' | 'input-checkbox' | 'input-password' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced'
5 5
6 descriptionHTML?: string 6 descriptionHTML?: string
7 7