Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/credentials/MatrixApi.credentials.ts
2025-09-08 04:48:28 +08:00

26 lines
519 B
TypeScript
Executable File

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