schneidmaster/debatevid.io

View on GitHub
app/models/tournament.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Tournament < ApplicationRecord
  has_many :videos

  def year_and_name
    "#{year} #{name}"
  end
end