-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update committee members (#119)
* refactor(about): committee data type * chore(about): update committee members * chore(about): transfer all rep to general committee * chore(about): update committee
- Loading branch information
Showing
2 changed files
with
48 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,125 +1,123 @@ | ||
type CommitteeMember = { | ||
name: string; | ||
position: string; | ||
isExecCommittee: boolean; | ||
exec?: boolean; | ||
}; | ||
|
||
// List of committee members with name, role and whether they are part of the | ||
// executive committee | ||
export const COMMITTEE_MEMBERS = [ | ||
export const COMMITTEE_MEMBERS: CommitteeMember[] = [ | ||
{ | ||
name: 'David Maslov', | ||
position: 'President', | ||
isExecCommittee: true, | ||
exec: true, | ||
}, | ||
{ | ||
name: 'Cubie', | ||
position: 'Vice-President', | ||
isExecCommittee: true, | ||
exec: true, | ||
}, | ||
{ | ||
name: 'Christian', | ||
position: 'Treasurer', | ||
isExecCommittee: true, | ||
exec: true, | ||
}, | ||
{ | ||
name: 'Ray Okamoto', | ||
position: 'Secretary', | ||
isExecCommittee: true, | ||
exec: true, | ||
}, | ||
{ | ||
name: 'Milan', | ||
position: 'Partnerships & Sponsorships Manager', | ||
isExecCommittee: true, | ||
exec: true, | ||
}, | ||
{ | ||
name: 'F. Umar', | ||
position: 'Partnerships & Sponsorships Officer', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'Pouya', | ||
position: 'Partnerships & Sponsorships Officer', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'Bowen Sun', | ||
position: 'Business Manager', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'Willard Gorman', | ||
position: 'Duck Lounge Liaison', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'Mischa Sarac', | ||
position: 'Equity Officer', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'S. Bhatta', | ||
position: 'Artificial Intelligence Representative', | ||
isExecCommittee: false, | ||
name: 'Maged Gayed', | ||
position: 'First Year Representative', | ||
}, | ||
{ | ||
name: 'Will Johnston', | ||
position: 'Cybersecurity Representative', | ||
isExecCommittee: false, | ||
name: 'Yuhan Wang', | ||
position: 'Graphic Designer', | ||
}, | ||
{ | ||
name: 'Khanh', | ||
position: 'Data Science Representative', | ||
isExecCommittee: false, | ||
name: 'M. Klaric', | ||
position: 'Graphic Designer', | ||
}, | ||
{ | ||
name: 'Jonty Leslie', | ||
position: 'Distributed Systems & Networking Representative', | ||
isExecCommittee: false, | ||
name: 'Darcy', | ||
position: 'Social Media Officer', | ||
}, | ||
{ | ||
name: 'Joshua Goldsworthy Callaway', | ||
position: 'Information Technology Representative', | ||
isExecCommittee: false, | ||
name: 'Yaman Ashqar', | ||
position: 'Social Media Officer', | ||
}, | ||
{ | ||
name: 'Dino Macri', | ||
position: 'Software Engineering Representative', | ||
isExecCommittee: false, | ||
name: 'Omar Badr', | ||
position: 'Social Media Officer', | ||
}, | ||
{ | ||
name: 'Yuhan Wang', | ||
position: 'Graphic Designer', | ||
isExecCommittee: false, | ||
name: 'Phoenix Pereira', | ||
position: 'Open Source Officer', | ||
}, | ||
{ | ||
name: 'Darcy', | ||
position: 'Social Media Officer', | ||
isExecCommittee: false, | ||
name: 'Yeyang (Justin) Sun', | ||
position: 'Open Source Officer', | ||
}, | ||
{ | ||
name: 'M. Klaric', | ||
position: 'Social Media Officer', | ||
isExecCommittee: false, | ||
name: 'S. Bhatta', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Phoenix Pereira', | ||
position: 'Open Source Officer', | ||
isExecCommittee: false, | ||
name: 'Will Johnston', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Rishi Adhikari', | ||
position: 'Open Source Officer', | ||
isExecCommittee: false, | ||
name: 'Khanh', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Jonty Leslie', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Cuinn Kemp', | ||
position: 'General Committee', | ||
isExecCommittee: false, | ||
}, | ||
{ | ||
name: 'Timothy Choi', | ||
position: 'General Committee', | ||
isExecCommittee: false, | ||
}, | ||
] as const satisfies CommitteeMember[]; | ||
{ | ||
name: 'Leo Li', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Zachary Anderson', | ||
position: 'General Committee', | ||
}, | ||
{ | ||
name: 'Mansi Patel', | ||
position: 'General Committee', | ||
}, | ||
]; |