osem-fcy/app/models/lodging.rb
2015-12-23 11:36:50 +02:00

12 lines
390 B
Ruby

class Lodging < ActiveRecord::Base
belongs_to :conference
validates :name, presence: true
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