diff options
author | 2023-09-08 22:45:17 -0700 | |
---|---|---|
committer | 2023-09-09 13:11:42 -0700 | |
commit | 48f6885f4472efbe0e23f990ae8d4545f9a6a73d (patch) | |
tree | a05b35013e65f95013f90006b07870ddaeaf4065 /internal/ui/form | |
parent | 32d33104a4934771ca99b1bcfe55bd0e4e88809b (diff) | |
download | v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.tar.gz v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.tar.zst v2-48f6885f4472efbe0e23f990ae8d4545f9a6a73d.zip |
Add generic webhook integration
Diffstat (limited to 'internal/ui/form')
-rw-r--r-- | internal/ui/form/integration.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/ui/form/integration.go b/internal/ui/form/integration.go index 53ff9202..de7b1630 100644 --- a/internal/ui/form/integration.go +++ b/internal/ui/form/integration.go @@ -69,6 +69,9 @@ type IntegrationForm struct { ShaarliEnabled bool ShaarliURL string ShaarliAPISecret string + WebhookEnabled bool + WebhookURL string + WebhookSecret string } // Merge copy form values to the model. @@ -129,6 +132,8 @@ func (i IntegrationForm) Merge(integration *model.Integration) { integration.ShaarliEnabled = i.ShaarliEnabled integration.ShaarliURL = i.ShaarliURL integration.ShaarliAPISecret = i.ShaarliAPISecret + integration.WebhookEnabled = i.WebhookEnabled + integration.WebhookURL = i.WebhookURL } // NewIntegrationForm returns a new IntegrationForm. @@ -192,5 +197,7 @@ func NewIntegrationForm(r *http.Request) *IntegrationForm { ShaarliEnabled: r.FormValue("shaarli_enabled") == "1", ShaarliURL: r.FormValue("shaarli_url"), ShaarliAPISecret: r.FormValue("shaarli_api_secret"), + WebhookEnabled: r.FormValue("webhook_enabled") == "1", + WebhookURL: r.FormValue("webhook_url"), } } |