mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -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',
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user