matrix-dimension/web/app/shared/models/hookshot_jira.ts

26 lines
462 B
TypeScript
Raw Normal View History

export interface FE_HookshotJiraBridge {
id: number;
upstreamId?: number;
provisionUrl?: string;
sharedSecret?: string;
isEnabled: boolean;
}
export interface FE_HookshotJiraConnection {
2021-12-01 21:35:16 +00:00
config: {
url: string;
commandPrefix?: string;
};
}
export interface FE_HookshotJiraInstance {
name: string;
url: string;
}
2021-12-01 21:35:16 +00:00
export interface FE_HookshotJiraProject {
key: string;
name: string;
url: string;
}