1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added manual pool order button

This commit is contained in:
2020-01-14 14:54:24 -05:00
parent 521067d4c0
commit ac0cdc25a3
4 changed files with 76 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
class WeightsController < ApplicationController
before_action :set_weight, only: [:show, :edit, :update, :destroy,:re_gen]
before_action :check_access, only: [:new,:create,:update,:destroy,:edit, :re_gen]
before_action :set_weight, only: [:pool_order, :show, :edit, :update, :destroy,:re_gen]
before_action :check_access, only: [:pool_order, :new,:create,:update,:destroy,:edit, :re_gen]
# GET /weights/1
@@ -78,6 +78,21 @@ class WeightsController < ApplicationController
GenerateTournamentMatches.new(@tournament).generateWeight(@weight)
end
def pool_order
pool = params[:pool_to_order].to_i
if @weight.all_pool_matches_finished(pool)
PoolOrder.new(@weight.wrestlers_in_pool(pool)).getPoolOrder
respond_to do |format|
format.html { redirect_to @tournament, notice: "Pool #{pool} placing is updating for weight class #{@weight.max}." }
end
else
respond_to do |format|
format.html { redirect_to @tournament, notice: "Pool #{pool} for weight class #{@weight.max} still has matches to finish." }
end
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_weight