summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/matches_controller.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/matches_controller.rb b/app/controllers/matches_controller.rb
index 97b8b83..fc44e35 100644
--- a/app/controllers/matches_controller.rb
+++ b/app/controllers/matches_controller.rb
@@ -207,7 +207,10 @@ class MatchesController < ApplicationController
base_score = next_score
next_score += base_score
end
- @match.status = 3
+ @match.submitted_peer_reviews += 1
+ if (@match.submitted_peer_reviews == @match.players.count)
+ @match.status = 3
+ end
respond_to do |format|
if @match.save
format.html { redirect_to tournament_match_path(@tournament, @match), notice: 'Peer Review Submitted' }