blob: 1b7b11ca3f2a3733d24e20b441858fc656dfcba0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
export interface Form {
name: string,
description: string,
open: boolean
}
export function getForms(): Form[] {
return [
{
name: "Ban Appeals",
description: "Appealing bans from the Discord server",
open: true
},
{
name: "Insights 2020",
description: "Insights about the Python Discord community",
open: false
},
{
name: "Code Jam 2099 Sign Ups",
description: "Signing up for Python Discord's millionth code jam!",
open: false
}
]
}
|