-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CHE-129] Add Edit Functionality To Posts #141
[CHE-129] Add Edit Functionality To Posts #141
Conversation
<h3 className="font-bold text-2xl">Replies</h3> | ||
{posts.map((post) => ( | ||
<div key={post._id} className="mb-4"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is currently setup to enable users to edit replies they've posted. Is this the goal or are we trying to enable editing of the actual posts themselves?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @Mnelson98 - This PR should only allow users to edit the replies they have posted to threads (topics). There is a subsequent PR up that will allow them to edit the initial thread post itself.
…/Add-Edit-Functionality-To-Posts
…/Add-Edit-Functionality-To-Posts
bf5aac9
into
CHE-110/story/Forums-Improvements
Description
As part of the CHE-110 story, Forums Improvements, this PR adds edit functionality to posts that the user made.
Jira Task
CHE-129
Testing Instructions
Checklist
All Team Members
npm run docker-test
in my local environment to check that this PR passes all unit tests.Additional Notes, Images, etc.
N/A