Files
n8n-enterprise-unlocked/packages/nodes-base/credentials/MatrixApi.credentials.ts
2020-10-15 23:01:07 +02:00

26 lines
504 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MatrixApi implements ICredentialType {
name = 'matrixApi';
displayName = 'Matrix API';
documentationUrl = 'matrix';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Homeserver URL',
name: 'homeserverUrl',
type: 'string' as NodePropertyTypes,
default: 'https://matrix-client.matrix.org',
},
];
}