-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 3766612 Author: theosiemensrhodes <[email protected]> Date: Wed Feb 12 10:50:06 2025 -0800 update frontend to match sql commit 06ac697 Author: Theo Siemens-Rhodes <[email protected]> Date: Wed Feb 12 10:34:43 2025 -0800 Volunteer Profile Imgs in Side Panel & Ensure admin users have login (#58) * add f_name, l_name to user, ensure admin login is successful * ensure f_name, l_name inserted, ensure inactive volunteers cannot login commit 9a24013 Merge: 3a37582 9f8fce7 Author: Josh Fung <[email protected]> Date: Tue Feb 11 23:29:28 2025 -0800 Merge pull request #57 from ubclaunchpad/schedule-button-status-logic Schedule Page Logic commit 9f8fce7 Author: Josh Fung <[email protected]> Date: Tue Feb 11 23:08:13 2025 -0800 Added thirty minute window to check-in before and after the shift commit bfce70e Merge: 74daca8 3a37582 Author: Josh Fung <[email protected]> Date: Sun Feb 9 16:44:11 2025 -0800 Merge branch 'main' into schedule-button-status-logic commit 74daca8 Author: Josh Fung <[email protected]> Date: Sat Feb 8 22:41:58 2025 -0800 Fixed shift cards on volunteer dashboard commit 7e0721c Author: Josh Fung <[email protected]> Date: Thu Feb 6 19:00:12 2025 -0800 Made panel more similar to designs and buttons more reusable commit 600e13b Author: Josh Fung <[email protected]> Date: Thu Feb 6 17:44:51 2025 -0800 Past and fulfilled coverage requests are no longer shown commit ef3f8f5 Merge: 01008da 6842393 Author: Josh Fung <[email protected]> Date: Thu Feb 6 16:57:21 2025 -0800 Merge branch 'main' into schedule-button-status-logic commit 01008da Author: Josh Fung <[email protected]> Date: Thu Feb 6 16:23:22 2025 -0800 Added a different status for your fulfilled coverage requests commit 584d609 Author: Josh Fung <[email protected]> Date: Thu Feb 6 12:25:38 2025 -0800 Refactor and cleanup commit 5d3403a Author: Josh Fung <[email protected]> Date: Tue Feb 4 15:36:08 2025 -0800 Added logic for cancelling shift coverage request commit fd5ca84 Author: Josh Fung <[email protected]> Date: Tue Feb 4 00:57:05 2025 -0800 Added canceling on covering someone else's shift commit fb625b2 Merge: 3b9120c 9afcfc8 Author: Josh Fung <[email protected]> Date: Tue Feb 4 00:14:45 2025 -0800 Merge branch 'main' into schedule-button-status-logic commit 3b9120c Author: Josh Fung <[email protected]> Date: Fri Jan 31 12:42:24 2025 -0800 Implemented basic cover shift logic and re-rendering side panel commit 2a56827 Author: Josh Fung <[email protected]> Date: Tue Jan 28 20:24:07 2025 -0800 Implemented check in from frontend and refactored so details panel is re-rendered commit e9ff8bd Author: Josh Fung <[email protected]> Date: Sun Jan 26 19:21:24 2025 -0800 Created API endpoint and routes for shift check-in commit 4a03f0b Author: Josh Fung <[email protected]> Date: Sun Jan 26 17:29:46 2025 -0800 Corrected prioritization of user's coverage requests over user's shifts commit 822cf24 Author: Josh Fung <[email protected]> Date: Sun Jan 26 17:25:21 2025 -0800 Refactored to reuse fetchShifts() commit fe30e39 Author: Josh Fung <[email protected]> Date: Sun Jan 26 16:46:27 2025 -0800 Filter out duplicate shifts and prioritize showing coverage shifts over user's own shifts
- Loading branch information
1 parent
8b412cb
commit a1afe16
Showing
49 changed files
with
1,382 additions
and
620 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 +1,5 @@ | ||
export type Role = "ADMIN" | "VOLUN" | "INSTR"; | ||
export enum Role { | ||
admin = 'admin', | ||
volunteer = 'volunteer', | ||
instructor = 'instructor' | ||
}; |
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
Oops, something went wrong.