16 lines
362 B
Ruby
16 lines
362 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Stage < ApplicationRecord
|
|
belongs_to :tournament
|
|
has_many :matches, dependent: :destroy
|
|
has_many :groups, dependent: :destroy
|
|
|
|
delegate :owner, to: :tournament
|
|
|
|
def teams
|
|
return matches.map(&:teams).flatten.uniq unless matches.size.zero?
|
|
|
|
groups.map(&:teams).flatten.uniq unless groups.size.zero?
|
|
end
|
|
end
|