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