1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 02:28:57 +03:00

👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2022-04-03 09:48:09 +02:00
parent 2070357e38
commit 7dacdf119a

View File

@ -1,14 +1,14 @@
import {
IAuthenticateBasicAuth,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
ICredentialTestRequest,
} from 'n8n-workflow';
export class ServiceNowBasicApi implements ICredentialType {
name = 'serviceNowBasicApi';
extends = [
'httpBasicAuth'
'httpBasicAuth',
];
displayName = 'ServiceNow Basic Auth API';
documentationUrl = 'serviceNow';
@ -30,6 +30,6 @@ export class ServiceNowBasicApi implements ICredentialType {
request: {
baseURL: '=https://{{$credentials?.subdomain}}.service-now.com',
url: '/api/now/table/sys_user_role',
}
}
},
};
}