Open
Conversation
Upgrade the guest join flow to create a real User account with authProvider 'guest', returning a JWT token so guests can access protected routes and complete their profile later. Add PUT /api/users/:userId endpoint for updating name, email, password, bio, profilePhoto, and socialLinks. Guest users are upgraded to local auth when they set a password. Users can only update their own profile. Update User model to support guest accounts (email optional with sparse index) and add bio/socialLinks fields.
This file contains hidden or 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
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.
Summary
authProvider: 'guest', returning a JWT so guests can access protected routes and complete their profile laterPUT /api/users/:userIdendpoint for profile updates (name, email, password, bio, profilePhoto, socialLinks)authProvider: 'local'when they set a password'guest'auth provider, addbioandsocialLinksfieldsChanges
src/models/user_model.ts: Email optional + sparse, added'guest'to authProvider enum, addedbioandsocialLinks(linkedin, github, other) fieldssrc/controllers/event_controller.ts:joinEventAsGuestnow creates a User record and returnsuserId+tokenin responsesrc/controllers/user_controller.ts: AddedupdateUsercontroller with authorization check (self-only), email validation, password hashing, and guest-to-local upgradesrc/routes/user_route.ts: AddedPUT /:userIdroute with auth middlewareTesting done
All tests performed manually against local dev server (
npm run dev):userIdandtokenreturned, participant has non-nulluserIdGET /api/users/mewith JWTauthProvider: "guest", no email, event history trackedauthProviderupgraded to"local", email set,passwordChangedAtrecordedPOST /api/auth/login)"You can only update your own profile""This name is already taken in this event""No fields to update"npm run build