mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Pushcut Node & Trigger (#1075)
* ✨ Pushcut Node & Trigger * ⚡ Small improvements Co-authored-by: Jan <janober@users.noreply.github.com>
This commit is contained in:
17
packages/nodes-base/credentials/PushcutApi.credentials.ts
Normal file
17
packages/nodes-base/credentials/PushcutApi.credentials.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class PushcutApi implements ICredentialType {
|
||||
name = 'pushcutApi';
|
||||
displayName = 'Pushcut API';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user