Open
Conversation
- Add email verification fields to User model (isEmailVerified, emailVerificationToken, emailVerificationTokenExpiry) - Generate secure verification token on student registration - Send verification email with link to backend API endpoint - Create /api/users/verify-email endpoint that validates token and redirects to login - Block login for students until email is verified - Verification link expires after 24 hours - Only students receive verification emails (other roles get regular confirmation)
- Add loyalty program fields to Vendor model (isLoyaltyPartner, discountRate, promoCode, termsAndConditions) - Create getLoyaltyProgramVendors endpoint to view all GUC loyalty program partners - Endpoint returns vendors with discount rates, promo codes, and terms & conditions - Protected with authentication and role-based authorization - Accessible to: Student, Staff, TA, Professor, Events Office, Admin - Returns only vendors marked as loyalty partners - Excludes sensitive vendor data (password, requests, upcomingEvents)
- Create documentController with getAllDocuments, viewDocument, and downloadDocument functions - Support multiple document storage formats (base64, file paths, URLs) - Handle documents from both bazaar and booth applicants - Support both embedded applicants (Event model) and separate models (BazaarApplicant, BoothApplicant) - Create documentRoutes with authentication and role-based authorization - Endpoints accessible only to Events Office and Admin roles - GET /api/documents - List all uploaded documents with metadata - GET /api/documents/view/:source/:documentId - View document in browser - GET /api/documents/download/:source/:documentId - Download document - Proper content-type headers for different file types (images, PDFs, etc.) - Secure file serving with authentication middleware
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.
No description provided.