async fn get_exercise_submissions(
pool: Data<PgPool>,
exercise_id: Path<Uuid>,
user: UserFromOAuthToken,
_client: SupportedClient,
) -> ControllerResult<Json<Vec<ExerciseSlideSubmissionListItem>>>Expand description
- GET /api/v0/exercise-services/client/exercises/:id/submissions
- Returns the current user’s past submissions to the given exercise, newest
- first, each annotated with its grading score and progress if graded.