diff options
author | 2020-09-30 21:31:25 +0100 | |
---|---|---|
committer | 2020-09-30 21:31:25 +0100 | |
commit | 9566564100448a78e6746a5dfcbd761e99ec31f7 (patch) | |
tree | ae8eb21523d92daa2ffeb86cdef8d42264164ca5 /src/api | |
parent | Update description of form listing (diff) |
Update form properties to mirror those in the form listing component
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/forms.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/api/forms.ts b/src/api/forms.ts index 1b7b11c..7c2666a 100644 --- a/src/api/forms.ts +++ b/src/api/forms.ts @@ -1,5 +1,5 @@ export interface Form { - name: string, + title: string, description: string, open: boolean } @@ -7,17 +7,17 @@ export interface Form { export function getForms(): Form[] { return [ { - name: "Ban Appeals", + title: "Ban Appeals", description: "Appealing bans from the Discord server", open: true }, { - name: "Insights 2020", + title: "Insights 2020", description: "Insights about the Python Discord community", open: false }, { - name: "Code Jam 2099 Sign Ups", + title: "Code Jam 2099 Sign Ups", description: "Signing up for Python Discord's millionth code jam!", open: false } |