Events: kickstart shared scoreboard
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
sto
2026-07-30 08:33:55 +02:00
parent b8a2e4b0b4
commit 4a4c79ad8a
13 changed files with 73 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
class ContestsController < ApplicationController
include CompletionsConcern
include ContestsConcern
include ContestantsConcern
before_action :set_contest, only: %i[ destroy show ]
@@ -168,10 +169,30 @@ class ContestsController < ApplicationController
end
def scoreboard
@contest = Contest.find_by(slug: params[:id])
unless @contest && @contest.public
skip_authorization
not_found and return
if active_page("/public/event")
@event = Event.find_by(slug: params[:id])
unless @event && @event.shared_scoreboard && !@event.contests.where(public: true).empty?
skip_authorization
not_found and return
end
if params.key?(:contest_id)
begin
@contest = Contest.find(params[:contest_id])
if @contest.event != @event
@contest = @event.contests.where(public: true).first
end
rescue
@contest = @event.contests.where(public: true).first
end
else
@contest = @event.contests.where(public: true).first
end
else
@contest = Contest.find_by(slug: params[:id])
unless @contest && @contest.public
skip_authorization
not_found and return
end
end
authorize @contest