-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: display meeting indexes by semester fix: improve calendar event handling and metadata refactor: update button class names and styles across multiple components * fix: Make legacy redirects more specific to allow meetings by semester index pages to load * feat: add MeetingTypeBadge component and integrate it into MeetingRow; consolidate `/meetings/all/` generation, * feat: overhaul meeting rows
- Loading branch information
1 parent
9e2c83a
commit 81cd684
Showing
38 changed files
with
1,028 additions
and
367 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
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
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
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,32 +1,43 @@ | ||
export const meetingMetatypes = [ | ||
'general', | ||
'ctf', | ||
'purple', | ||
'embedded', | ||
]; | ||
|
||
'general', | ||
'seminar', | ||
'ctf', | ||
'embedded', | ||
'purple', | ||
]; | ||
|
||
export type MeetingMetatype = typeof meetingMetatypes[number]; | ||
|
||
export interface MeetingMetadata { | ||
name: string; | ||
shortName: string; | ||
} | ||
name: string; | ||
shortName: string; | ||
description?: string; | ||
}; | ||
|
||
export const meetingMetadata: Record<MeetingMetatype, MeetingMetadata> = { | ||
'general': { | ||
name: 'General', | ||
shortName: 'General', | ||
}, | ||
'ctf': { | ||
name: 'CTF Team', | ||
shortName: 'CTF', | ||
}, | ||
'purple': { | ||
name: 'Purple Team', | ||
shortName: 'Purple', | ||
}, | ||
'embedded': { | ||
name: 'Embedded Team', | ||
shortName: 'Embedded', | ||
}, | ||
'general': { | ||
name: 'General Meetings', | ||
shortName: 'General', | ||
description: 'Attend our weekly general meetings to learn the fundamental of cybersecurity.', | ||
}, | ||
'seminar': { | ||
name: 'Seminar Meetings', | ||
shortName: 'Seminar', | ||
description: 'Discuss interesting, novel, and advanced research topics in security.', | ||
}, | ||
'ctf': { | ||
name: 'CTF Team', | ||
shortName: 'CTF', | ||
description: 'Compete in Capture-the-Flag events to practice your cybersecurity skills.', | ||
}, | ||
'embedded': { | ||
name: 'Embedded Team', | ||
shortName: 'Embedded', | ||
description: 'Build secure embedded systems and learn about hardware hacking.', | ||
}, | ||
'purple': { | ||
name: 'Purple Team', | ||
shortName: 'Purple', | ||
description: 'Learn red-teaming and blue-teaming skills to secure systems and networks.', | ||
}, | ||
}; |
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
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
Oops, something went wrong.