mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -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',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
|
|
|
@ -22,6 +22,9 @@ export class HttpQueryAuth implements ICredentialType {
|
|||
displayName: 'Value',
|
||||
name: 'value',
|
||||
type: 'string',
|
||||
typeOptions: {
|
||||
password: true,
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue