Skip to content

Add tests to check if the contributor object exists for the statistic page. #2985

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/exercises/statistics.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ h1 = @exercise
tbody
- user_with_submission_stats.each do |contributor, submission_stat|
tr
td = link_to_if user_type == ExternalUser && policy(contributor).statistics?, contributor.displayname, statistics_external_user_exercise_path(contributor, @exercise)
td = link_to_if user_type == ExternalUser && policy(contributor).statistics?, contributor ? contributor.displayname : 'Unknown User', (contributor ? statistics_external_user_exercise_path(contributor, @exercise) : '')
td = submission_stat['maximum_score'] || '0.0'
td.align-middle
- if submission_stat.created_at.present?
Expand All @@ -90,4 +90,4 @@ h1 = @exercise
- elsif submission_stat.after_late_deadline?
.deadline-result.negative-result
td = submission_stat['runs'] if policy(@exercise).detailed_statistics?
td = @exercise.average_working_time_for(contributor) || '00:00:00' if policy(@exercise).detailed_statistics?
td = @exercise.average_working_time_for(contributor) || '00:00:00' if contributor && policy(@exercise).detailed_statistics?