blob: a0c27ce6784ac04d6e86f08de18d9eae15706c49 (
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 Sign Ups",
description: "Insights about the Python Discord community",
open: false
}
]
}
|