diff options
author | 2021-01-04 19:21:02 +0300 | |
---|---|---|
committer | 2021-01-06 09:36:00 +0300 | |
commit | b23420b6870c42843608fa2c26c70510009f3560 (patch) | |
tree | 1bdc4d0acca61d3e17f5f5a26d2fb7d3ed77aada | |
parent | Adds Question Rendering (diff) |
Fixes Model Casing
Changes the casing of the webhook enabled enum to fit with the other enums.
Co-authored-by: ks129 <[email protected]>
-rw-r--r-- | src/api/forms.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/forms.ts b/src/api/forms.ts index 8c31e5b..12b9abf 100644 --- a/src/api/forms.ts +++ b/src/api/forms.ts @@ -7,7 +7,7 @@ export enum FormFeatures { Open = "OPEN", CollectEmail = "COLLECT_EMAIL", DisableAntispam = "DISABLE_ANTISPAM", - WEBHOOK_ENABLED = "WEBHOOK_ENABLED" + WebhookEnabled = "WEBHOOK_ENABLED" } export interface Form { |