-
Notifications
You must be signed in to change notification settings - Fork 90
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
Implement Discussion Forum with CRUD operation & Responsive Design #426
Comments
Hyy @ShivanshPlays, Can you give some work samples. |
sure |
@Anuj3553 please check: Untitled.video.-.Made.with.Clipchamp.-.2024-11-09T011530.657.mp4 |
I dont think we want this current feature @ShivanshPlays to our website |
okay but #422 also addresses the same feature? edit: apologies for the duplicate issue @Sawan-Kushwah I just noticed. |
No problem. |
No worries !✨ |
Likewise @Sawan-Kushwah ! |
@ShivanshPlays hey i want to discussion something with you |
@ShivanshPlays i have send you request check it |
okay sure |
Feature: FAQ Forum with Answer Submission
Overview
This feature aims to create a FAQ forum where users can submit questions, view previously asked questions, and submit answers to others' questions. Submitted questions are stored in the database, and answers are associated with them. The forum will have two sections:
The feature will be implemented in two separate PRs to ensure clear division between backend and frontend contributions.
PR 1: Backend and API Endpoints
Description
Create API endpoints to handle:
Tasks
id
,title
,description
,userId
,createdAt
, andupdatedAt
.id
,questionId
,answerText
,userId
,createdAt
, andupdatedAt
.POST /api/faq/questions
- To create a new question.POST /api/faq/answers
- To submit an answer to a question.GET /api/faq/questions/answered
- To fetch answered questions.GET /api/faq/questions/unanswered
- To fetch unanswered questions.Expected Outcome
This PR will enable data storage and retrieval of questions and answers, preparing the foundation for frontend integration.
PR 2: Frontend Implementation
Description
Create the frontend UI to display and interact with the FAQ forum:
Tasks
Expected Outcome
This PR will provide a user interface to interact with the FAQ forum, enabling question submission and viewing/answering of questions based on their answered status.
Notes
The text was updated successfully, but these errors were encountered: