diff options
Diffstat (limited to 'src/api/forms.ts')
-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 } |