mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
feat: Hide sensible value in Auth Header Credentials and Auth Query Credentials (#5534)
* ⚡️ Enable passord type on value * ⚡️ Enable password type on query auth cred
This commit is contained in:
parent
1bff044252
commit
4a209e1dd9
|
@ -22,6 +22,9 @@ export class HttpHeaderAuth implements ICredentialType {
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
typeOptions: {
|
||||||
|
password: true,
|
||||||
|
},
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -22,6 +22,9 @@ export class HttpQueryAuth implements ICredentialType {
|
||||||
displayName: 'Value',
|
displayName: 'Value',
|
||||||
name: 'value',
|
name: 'value',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
typeOptions: {
|
||||||
|
password: true,
|
||||||
|
},
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue