Files
MatchLiveTv/backend/app/domain/sports/overlay_kind.rb
Emiliano Frascaro 2b7e8b9e36 Migliora overlay basket Android, regia e catalogo sport senza timer.
Fix crash e race su +3, layout tabellone con squadre ai lati, safe area in diretta e rimozione overlay cronometro; backend con sync punteggio periodo, link diretta in regia e init score_state basket.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-09 23:31:12 +02:00

12 lines
195 B
Ruby

# frozen_string_literal: true
module Sports
class OverlayKind
ALL = %w[none volley basket timed racket].freeze
def self.valid?(value)
ALL.include?(value.to_s)
end
end
end