diff options
Diffstat (limited to 'src/api/forms.ts')
-rw-r--r-- | src/api/forms.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/api/forms.ts b/src/api/forms.ts new file mode 100644 index 0000000..7c2666a --- /dev/null +++ b/src/api/forms.ts @@ -0,0 +1,25 @@ +export interface Form { + title: string, + description: string, + open: boolean +} + +export function getForms(): Form[] { + return [ + { + title: "Ban Appeals", + description: "Appealing bans from the Discord server", + open: true + }, + { + title: "Insights 2020", + description: "Insights about the Python Discord community", + open: false + }, + { + title: "Code Jam 2099 Sign Ups", + description: "Signing up for Python Discord's millionth code jam!", + open: false + } + ] +} |