osem-fcy/app/models/photo.rb

12 lines
450 B
Ruby
Raw Normal View History

2014-06-10 12:43:15 +05:30
class Photo < ActiveRecord::Base
attr_accessible :picture, :description
belongs_to :conference
validates_presence_of :picture
has_attached_file :picture,
styles: { thumb: "100x100>", large: "300x300>", banner: "600x300>" }
2014-06-10 12:43:15 +05:30
validates_attachment_content_type :picture,
content_type: [/jpg/, /jpeg/, /png/, /gif/],
size: { in: 0..500.kilobytes }
end