1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-21 18:17:50 +03:00
n8n/packages/nodes-base/credentials/SentryIoApi.credentials.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
379 B
TypeScript
Raw Normal View History

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class SentryIoApi implements ICredentialType {
name = 'sentryIoApi';
displayName = 'Sentry.io API';
documentationUrl = 'sentryIo';
properties: INodeProperties[] = [
{
displayName: 'Token',
name: 'token',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}