diff options
author | 2021-01-21 14:33:19 +0200 | |
---|---|---|
committer | 2021-01-21 14:33:19 +0200 | |
commit | 16d3445de6900303474ddf9f6789f310df121ea5 (patch) | |
tree | a201bc857dbb5400f4a0701ba178af0cf5013f17 /src/api/forms.ts | |
parent | Add state for displaying thanks for submitting showing (diff) |
Add submitted_text field to form
Diffstat (limited to 'src/api/forms.ts')
-rw-r--r-- | src/api/forms.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/forms.ts b/src/api/forms.ts index 12b9abf..77fbb8e 100644 --- a/src/api/forms.ts +++ b/src/api/forms.ts @@ -16,7 +16,8 @@ export interface Form { webhook: WebHook | null, questions: Array<Question>, name: string, - description: string + description: string, + submitted_text: string | null } export interface WebHook { |