-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Security vulnerabilities #59
Merged
Merged
Conversation
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
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
jjessieshang
approved these changes
Feb 18, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks good to me!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changelog
reset-password
flow to be 1 request instead of 2. Previously it was possible to reset your own password with just an auth token by sending requests directly to the backend.401
for unauthorized.401
errors and logout the user accordingly.getUserById(user_id: string, password: boolean = false)
exclude password by default hereupdateUserPassword(user_id: string, password: string)
only update user password hereLet me know if anything isn't clear here!