Add friends darius#69
Open
DariusR216 wants to merge 6 commits into
Open
Conversation
- Add backend API endpoints for creating and joining groups - Generate unique 6-character group codes - Create frontend components for group management - Add database schema documentation - Implement role-based access (admin/member) - Add copy-to-clipboard functionality for group codes Requires Supabase setup to be fully functional
- Add privacy column (public/private) to groups table - Add status column (pending/active/deleted) for temporary groups - Add expires_at column for 3-day cleanup feature - Add performance indexes for new columns - Create migration.sql with ready-to-run SQL commands - Update documentation with new feature explanations
- Add friends database table schema with RLS policies - Create /api/friends route for getting friends list and sending friend requests - Create /api/friends/requests route for managing friend requests (accept/reject) - Create /api/users/search route for searching users to friend - Update DATABASE_SCHEMA.md with friends table documentation - Add friends migration SQL file for database setup The friends feature includes: - Send friend requests - Accept/reject friend requests - Get friends list - Search for users to add as friends - Automatic status handling (pending, accepted)
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…gery Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
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.
Overview
Implements a complete friend management system with user search, friend request sending/acceptance, and an inbox for managing pending requests. Includes a redesigned profile page matching the wireframe design.
Features Added
User Search & Discovery
/api/users/search)Friend Requests
Friends Management
Profile Page Redesign