diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-26 21:08:56 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-26 21:08:56 -0400 |
commit | f156d56096e08254a249304b68ae0cb433ef9db3 (patch) | |
tree | 887892ec2c07b53e04a13309647a1bbb003137ec /app/controllers/matches_controller.rb | |
parent | 8203b447a8c5967afa8faab0ec56c42afa566823 (diff) | |
parent | a9a59bf0199c761ada889f23274aa0a56da50554 (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'app/controllers/matches_controller.rb')
-rw-r--r-- | app/controllers/matches_controller.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/matches_controller.rb b/app/controllers/matches_controller.rb index a2a1269..4a20df2 100644 --- a/app/controllers/matches_controller.rb +++ b/app/controllers/matches_controller.rb @@ -230,11 +230,14 @@ class MatchesController < ApplicationController base_score = next_score next_score += base_score end + @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| if @match.save format.html { redirect_to tournament_match_path(@tournament, @match), notice: 'Scores Submitted' } |