mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
👕 Fix lint issue
This commit is contained in:
parent
2070357e38
commit
7dacdf119a
|
@ -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',
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue