pub async fn get_feedback(
course_id: Path<Uuid>,
pool: Data<PgPool>,
read: Query<GetFeedbackQuery>,
user: AuthUser,
) -> ControllerResult<Json<Vec<Feedback>>>
Expand description
GET /api/v0/main-frontend/courses/:id/feedback?read=true
- Returns feedback for the given course.