Feature/community - #36
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request implements a community feature for the recovery system, allowing authenticated users to create posts and view a feed of community content. The feature supports anonymous posting with generated aliases and includes like functionality.
Changes:
- Added Community model with fields for content, category, author name, anonymity flag, and likes
- Implemented createPost and getFeed controller functions for post creation and feed retrieval
- Created community routes with authentication middleware
- Integrated community routes into the main app under
/api/community
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 9 comments.
| File | Description |
|---|---|
| packages/recovery-system/backend/src/models/Community.ts | Defines the CommunityPost schema with content, category, author, anonymity, and likes fields |
| packages/recovery-system/backend/src/controllers/community.controller.ts | Implements post creation with anonymous alias generation and feed retrieval sorted by creation date |
| packages/recovery-system/backend/src/routes/community.routes.ts | Defines authenticated routes for creating posts and retrieving the feed |
| packages/recovery-system/backend/src/app.ts | Registers community routes under /api/community path |
Comments suppressed due to low confidence (1)
packages/recovery-system/backend/src/routes/community.routes.ts:1
- The import uses
expresswhile other route files in the codebase useRouterfrom express (see journal.routes.ts line 1, counselor.routes.ts line 1). For consistency with the codebase, importRouterdirectly:import { Router } from "express";and useconst router = Router();.
import express from "express";
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Make the community feature and add the routes