1
0

feat(webhooks): add webhook management form

This commit is contained in:
kolaente
2023-10-18 20:12:29 +02:00
parent df09bca010
commit 3d2fe4cf65
8 changed files with 315 additions and 0 deletions

View 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
}