The forum feature allows students to ask career-related questions and alumni/other students can provide a response.
This task includes creating collections in the MongoDB to store questions and answers. You should also create models in backend/src/models/
Question:
- id
- question title
- question content
- user id
- created date
- modified date
- answers (array of answer id's)
Answer:
- id
- user id
- answer content
- created date
- modified date
The forum feature allows students to ask career-related questions and alumni/other students can provide a response.
This task includes creating collections in the MongoDB to store questions and answers. You should also create models in backend/src/models/
Question:
Answer: