blob: 7c2666ab14548877a9f89555f5e756b503f196bb (
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 {
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
}
]
}
|