Skip to content

Commit

Permalink
feat: Hide sensible value in Auth Header Credentials and Auth Query C…
Browse files Browse the repository at this point in the history
…redentials (#5534)

* ⚡️ Enable passord type on value

* ⚡️ Enable password type on query auth cred
  • Loading branch information
agobrech committed Feb 23, 2023
1 parent 1bff044 commit 4a209e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/nodes-base/credentials/HttpHeaderAuth.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ export class HttpHeaderAuth implements ICredentialType {
displayName: 'Value',
name: 'value',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
Expand Down
3 changes: 3 additions & 0 deletions packages/nodes-base/credentials/HttpQueryAuth.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ export class HttpQueryAuth implements ICredentialType {
displayName: 'Value',
name: 'value',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
];
Expand Down

0 comments on commit 4a209e1

Please sign in to comment.