matrix-dimension/web/app/shared/models/telegram.ts
Travis Ralston 242ad3bf3a Admin interface for managing Telegram bridges
Currently only one bridge is supported at a time, however in the future we may wish to load balance between bridges or something.
2018-09-16 02:26:10 -06:00

8 lines
185 B
TypeScript

export interface FE_TelegramBridge {
id: number;
upstreamId?: number;
provisionUrl?: string;
allowPuppets?: boolean;
sharedSecret?: string;
isEnabled: boolean;
}