mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
726f4668e0
* refactor: webhooks workflow * chore: update delete modal content
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
export interface IWebhook {
|
|
created_at: string;
|
|
cycle: boolean;
|
|
id: string;
|
|
is_active: boolean;
|
|
issue: boolean;
|
|
issue_comment: boolean;
|
|
module: boolean;
|
|
project: boolean;
|
|
secret_key?: string;
|
|
updated_at: string;
|
|
url: string;
|
|
}
|
|
|
|
export type TWebhookEventTypes = "all" | "individual";
|