feat: add arangodb database methods for webhook

This commit is contained in:
Lakhan Samani
2022-07-09 11:44:14 +05:30
parent e8eb62769e
commit 6d586b16e4
7 changed files with 113 additions and 11 deletions

View File

@@ -42,6 +42,6 @@ func (p *provider) GetWebhookByEventName(eventName string) (models.Webhook, erro
}
// DeleteWebhook to delete webhook
func (p *provider) DeleteWebhook(webhookID string) error {
func (p *provider) DeleteWebhook(webhook models.Webhook) error {
return nil
}