diff options
author | 2023-09-08 22:45:17 -0700 | |
---|---|---|
committer | 2023-09-09 13:11:42 -0700 | |
commit | 48f6885f4472efbe0e23f990ae8d4545f9a6a73d (patch) | |
tree | a05b35013e65f95013f90006b07870ddaeaf4065 /internal/model/integration.go | |
parent | 32d33104a4934771ca99b1bcfe55bd0e4e88809b (diff) | |
download | v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.tar.gz v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.tar.zst v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.zip |
Add generic webhook integration
Diffstat (limited to 'internal/model/integration.go')
-rw-r--r-- | internal/model/integration.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/model/integration.go b/internal/model/integration.go index c00be86f..027369ee 100644 --- a/internal/model/integration.go +++ b/internal/model/integration.go @@ -64,4 +64,7 @@ type Integration struct { ShaarliEnabled bool ShaarliURL string ShaarliAPISecret string + WebhookEnabled bool + WebhookURL string + WebhookSecret string } |