mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
4199062a9c
Added model annotations
45 lines
837 B
Ruby
45 lines
837 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: weeks
|
|
#
|
|
# id :integer not null, primary key
|
|
# name :string(255)
|
|
# start_date :date
|
|
# contest_id :integer
|
|
# map1_id :integer
|
|
# map2_id :integer
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
#
|
|
|
|
class Week < ActiveRecord::Base
|
|
include Extra
|
|
|
|
attr_protected :id, :updated_at, :created_at
|
|
|
|
validates_presence_of :contest, :map1, :map2
|
|
validates_length_of :name, :in => 1..30
|
|
|
|
scope :ordered, :order => "start_date ASC"
|
|
|
|
belongs_to :contest
|
|
belongs_to :map1, :class_name => "Map"
|
|
belongs_to :map2, :class_name => "Map"
|
|
has_many :matches
|
|
|
|
def to_s
|
|
self.name
|
|
end
|
|
|
|
def can_create? cuser
|
|
cuser and cuser.admin?
|
|
end
|
|
|
|
def can_update? cuser
|
|
cuser and cuser.admin?
|
|
end
|
|
|
|
def can_destroy? cuser
|
|
cuser and cuser.admin?
|
|
end
|
|
end
|