2014-06-14 20:41:26 +05:30
|
|
|
class Lodging < ActiveRecord::Base
|
2014-11-20 14:57:03 +01:00
|
|
|
attr_accessible :name, :description, :photo, :website_link, :conference_id
|
|
|
|
|
belongs_to :conference
|
2014-11-12 12:00:03 +01:00
|
|
|
|
|
|
|
|
validates :name, presence: true
|
|
|
|
|
|
2014-06-14 20:41:26 +05:30
|
|
|
has_attached_file :photo,
|
|
|
|
|
styles: { thumb: '100x100>', large: '300x300>' }
|
|
|
|
|
|
|
|
|
|
validates_attachment_content_type :photo,
|
|
|
|
|
content_type: [/jpg/, /jpeg/, /png/, /gif/],
|
|
|
|
|
size: { in: 0..500.kilobytes }
|
|
|
|
|
end
|