pub async fn get_user_total_exam_points(
    conn: &mut PgConnection,
    user_id: Uuid,
    exam_id: Uuid
) -> ModelResult<Option<f32>>
Expand description

Gets the total amount of points that the user has received from an exam.

The caller should take into consideration that for an ongoing exam the result will be volatile.