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:
Ricardo Espinoza
2022-02-11 11:20:41 -05:00
committed by GitHub
parent 9335ee5deb
commit f35d123776
5 changed files with 308 additions and 0 deletions

View 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: '',
},
];
}