feat(webhooks): add webhook management form
This commit is contained in:
14
src/modelTypes/IWebhook.ts
Normal file
14
src/modelTypes/IWebhook.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import type {IAbstract} from './IAbstract'
|
||||
import type {IUser} from '@/modelTypes/IUser'
|
||||
|
||||
export interface IWebhook extends IAbstract {
|
||||
id: number
|
||||
projectId: number
|
||||
secret: string
|
||||
targetUrl: string
|
||||
events: string[]
|
||||
createdBy: IUser
|
||||
|
||||
created: Date
|
||||
updated: Date
|
||||
}
|
Reference in New Issue
Block a user