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>
12 lines
195 B
Ruby
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
|