stamford-syntax-club / course-compose

Course Compose is a course-review website tailored for Stamford students, providing a platform for sharing and discovering insights about various courses
MIT License
2 stars 0 forks source link

[BACKEND] API for listing reviews #12

Closed chinathaip closed 9 months ago

chinathaip commented 10 months ago

GET /api/courses/<courseCode>/reviews

[
  {
    "id": 2,
    "academicYear": 2022,
    "description": "The material was challenging but interesting.",
    "rating": 4,
    "votes": 8,
    "course": {
      "id": 2,
      "code": "MATH201"
    },
    "user": {
      "id": 2,
      "username": "jane_smith"
    }
  }
]