mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
337 B
Ruby
12 lines
337 B
Ruby
class LandingPageImage < ActiveRecord::Base
|
|
attr_accessible :photo
|
|
has_attached_file :photo, styles: { max_common_res: ["1920x1080#", :jpg] },
|
|
:convert_options => { max_common_res: "-quality 25" }
|
|
|
|
validates_attachment_presence :photo
|
|
|
|
def self.random
|
|
offset(rand(LandingPageImage.count)).first
|
|
end
|
|
end
|