mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(NocoDB Node): Fix for updating or deleting rows with not default primary keys
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
import type { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
import type {
|
||||
IAuthenticateGeneric,
|
||||
ICredentialTestRequest,
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class NocoDbApiToken implements ICredentialType {
|
||||
name = 'nocoDbApiToken';
|
||||
@@ -31,4 +36,11 @@ export class NocoDbApiToken implements ICredentialType {
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
test: ICredentialTestRequest = {
|
||||
request: {
|
||||
baseURL: '={{ $credentials.host }}',
|
||||
url: '/api/v1/auth/user/me',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user