class Requester < ActiveRecord::Base
  has_many :mash_tournaments

  def current_tournament
    self.mash_tournaments.last
  end
end