diff options
author | tkimia <tkimia@purdue.edu> | 2014-04-28 20:03:34 -0400 |
---|---|---|
committer | tkimia <tkimia@purdue.edu> | 2014-04-28 20:03:34 -0400 |
commit | 1a6450ec1f5c538eff6dbf6f91582c47fb16e3cc (patch) | |
tree | dc1a9455fedb082a3be0bb36ac19aae5cbbe39fd /app/controllers/matches_controller.rb | |
parent | 3992a2e52a950c644cfe56bc23991e3a03166568 (diff) | |
parent | 3ab30900798a838b399d06f28251b6cdd82a94de (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 | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/app/controllers/matches_controller.rb b/app/controllers/matches_controller.rb index bed06ba..81ffcd8 100644 --- a/app/controllers/matches_controller.rb +++ b/app/controllers/matches_controller.rb @@ -44,19 +44,11 @@ class MatchesController < ApplicationController end when 2 # Started, waiting to finish - @match.handle_sampling(params) - if @match.finished? - @match.status = 3 - respond_to do |format| - if @match.save - format.html { redirect_to tournament_match_path(@tournament, @match), notice: 'Match has finished.' } - format.json { head :no_content } - else - format.html { render action: 'show' } - format.json { render json: @match.errors, status: :unprocessable_entity } - end - end - return + @match.handle_sampling(@current_user, params) + # The @match.status will be updated by Statistic's after_save hook + respond_to do |format| + format.html { redirect_to tournament_match_path(@tournament, @match), notice: 'Match has finished.' } + format.json { head :no_content } end when 3 if (@tournament.hosts.include? current_user) and (params[:update_action] == "start") @@ -77,8 +69,9 @@ class MatchesController < ApplicationController end return end + else + redirect_to tournament_match_path(@tournament, @match) end - redirect_to tournament_match_path(@tournament, @match) end private |