matrix-dimension/src-ts/db/models/IntegrationRecord.ts
Travis Ralston 599fb80112 Add the start of an admin API and re-add widgets
The frontend is still broken and doesn't use these endpoints at all. A migration tool still needs to be written to pull in existing widget configurations.
2017-12-18 21:44:01 -07:00

8 lines
169 B
TypeScript

export interface IntegrationRecord {
type: string;
name: string;
avatarUrl: string;
description: string;
isEnabled: boolean;
isPublic: boolean;
}