Add support for specifying Matrix homeserver URL (#1065)

This commit is contained in:
Tulir Asokan
2020-10-16 00:01:07 +03:00
committed by GitHub
parent a76cdda4d3
commit ea328e56cd
2 changed files with 9 additions and 3 deletions

View File

@@ -15,5 +15,11 @@ export class MatrixApi implements ICredentialType {
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Homeserver URL',
name: 'homeserverUrl',
type: 'string' as NodePropertyTypes,
default: 'https://matrix-client.matrix.org',
},
];
}