fix linting errors

This commit is contained in:
Marcus 2022-11-22 17:40:49 +01:00
commit 8ba653d5eb
2 changed files with 7 additions and 7 deletions

View file

@ -28,14 +28,14 @@ export class HttpBinApi implements ICredentialType {
// stating how this credential is injected as part of the request
// An example is the Http Request node that can make generic calls
// reusing this credential
authenticate = {
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '={{"Bearer " + $credentials.token}}',
},
},
} as IAuthenticateGeneric;
};
// The block below tells how this credential can be tested
test: ICredentialTestRequest = {