Add activity feed api - #1
Draft
othmanAbdelaziz2001 wants to merge 1 commit into
Draft
Conversation
Owner
Author
|
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @othmanAbdelaziz2001 and the rest of your teammates on |
| }, | ||
| { | ||
| id: 13, | ||
| title: 'Status Update', |
Owner
Author
There was a problem hiding this comment.
can you change this
othmanAbdelaziz2001
force-pushed
the
09-18-demo_e4403347_add_activity_feed_api
branch
from
September 18, 2024 10:57
489f88b to
e3211d2
Compare
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.

TL;DR
Added a new Express server with a mock activity feed endpoint.
What changed?
server.jsfile in thegraphite-demodirectory./feedendpoint that returns a mock activity feed as JSON.How to test?
npm install expressnode server.jshttp://localhost:3000/feedWhy make this change?
This change provides a basic backend structure for the activity feed feature, allowing frontend development to proceed with a functional API endpoint. The mock data enables testing and development of the activity feed UI without requiring a full database implementation.