2014-08-10 20:30:37 +03:00
|
|
|
class Track < ActiveRecord::Base
|
|
|
|
belongs_to :conference
|
2014-10-14 23:55:17 +03:00
|
|
|
has_many :events, dependent: :destroy
|
2014-08-10 20:30:37 +03:00
|
|
|
|
|
|
|
validates :name, presence: true
|
2014-10-14 18:27:28 +03:00
|
|
|
validates :color, presence: true, format: {with: /\A#?[a-f0-9]{6}\z/i}
|
|
|
|
validates :description, presence: true
|
2014-08-10 20:30:37 +03:00
|
|
|
|
2014-09-06 18:18:08 +03:00
|
|
|
translates :name, :description
|
|
|
|
|
2014-08-10 20:30:37 +03:00
|
|
|
def color=(hex_triplet)
|
|
|
|
write_attribute :color, hex_triplet.gsub(/\A#/,'') if hex_triplet
|
|
|
|
end
|
2014-10-14 18:27:28 +03:00
|
|
|
|
|
|
|
def color
|
|
|
|
"##{read_attribute :color}"
|
|
|
|
end
|
2014-08-10 20:30:37 +03:00
|
|
|
end
|