diff options
author | 2021-02-19 11:32:16 +0300 | |
---|---|---|
committer | 2021-02-19 11:32:16 +0300 | |
commit | 010e08a633e3d83e25bc2f1518876fc8a22eab0e (patch) | |
tree | c015db3e245b75186568e3a8508fa3dd56969ab7 /src/api | |
parent | Merge pull request #139 from python-discord/dependabot/npm_and_yarn/typescrip... (diff) | |
parent | Remove TODO (diff) |
Merge pull request #91 from python-discord/forms-submitting
Form submission validation and submitting
Diffstat (limited to 'src/api')
-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 { |