-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathexecutives.js
More file actions
80 lines (78 loc) · 1.65 KB
/
Copy pathexecutives.js
File metadata and controls
80 lines (78 loc) · 1.65 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// TODO executive avatars
// TODO previous executives
const EXAMPLE = {
name: "Bob Computers",
roles: ["Society Member"],
username: "bmcomputers", // MUN email minus @mun.ca
discord: {
username: "computerbob",
discriminant: undefined, // Not needed in most cases
},
picture: "assets/execs/bmcomputers.jpg", // Not currently used
};
export const EXECUTIVES = [
{
name: "Orin Peddle",
roles: ["President"], // Until Fall 2025, unless replaced sooner
username: "silasp",
discord: {
username: "neoquartz",
},
},
{
name: "Robin Murphy",
roles: ["Vice President"], // Until Spring 2025, unless replaced sooner
username: "rtheresam",
discord: {
username: "robbie3598",
},
},
{
name: "Girish Verma",
roles: ["Treasurer"], // Until Spring 2025, unless replaced sooner
username: "gverma",
discord: {
username: "girish9983",
},
},
{
name: "Grey Seaward",
roles: ["CSUGC Representative"],
username: "gseaward",
discord: {
username: "verdlegeese",
},
},
{
name: "Parsa Esmkhani",
roles: ["Science Society Representative"],
username: "pesmkhani",
discord: {
username: "cinderelmo",
},
},
{
name: "Natalie Cashin",
roles: ["Society Volunteer"],
username: "ncashin",
discord: {
username: "lor.__",
},
},
{
name: "Amy Rose",
roles: ["Society Volunteer"],
username: "aerose",
discord: {
username: "amye.rose",
},
},
{
name: "Sam Watson-Jones",
roles: ["Society Volunteer"],
username: "swatsonjones",
discord: {
username: "saaaaaaph",
},
},
];