mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Linear Trigger node (#2767)
* ✨ Linear Trigger * 🎨 Replace PNG with SVG icon Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
18
packages/nodes-base/credentials/LinearApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/LinearApi.credentials.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class LinearApi implements ICredentialType {
|
||||
name = 'linearApi';
|
||||
displayName = 'Linear API';
|
||||
documentationUrl = 'linear';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user