summaryrefslogtreecommitdiff
path: root/app/controllers/matches_controller.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-07 04:47:50 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-07 04:47:50 -0400
commitc8b4045ba1ca02e750d6e8b15a1ced47b1930217 (patch)
treec5cb5380e61509541e8d6f1a17ca319267e4dca0 /app/controllers/matches_controller.rb
parentb5f430fd59f7140722cc7940356c1de1ddd6f4d4 (diff)
It works. Users can do peer review.
Diffstat (limited to 'app/controllers/matches_controller.rb')
-rw-r--r--app/controllers/matches_controller.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/controllers/matches_controller.rb b/app/controllers/matches_controller.rb
index 3c93eac..69ea23b 100644
--- a/app/controllers/matches_controller.rb
+++ b/app/controllers/matches_controller.rb
@@ -215,8 +215,9 @@ class MatchesController < ApplicationController
base_score = next_score
next_score += base_score
end
- @match.submitted_peer_reviews += 1
- if (@match.submitted_peer_reviews == @match.players.count)
+ @match.submitted_peer_evaluations += 1
+ players = []; @match.teams.each{|t| players.concat(t.users.all)}
+ if (@match.submitted_peer_evaluations == players.count)
@match.status = 3
end
respond_to do |format|