mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* ✨ Linear Trigger * 🎨 Replace PNG with SVG icon Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
19 lines
332 B
TypeScript
19 lines
332 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|