mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
13 lines
387 B
Ruby
13 lines
387 B
Ruby
class Photo < ActiveRecord::Base
|
|
belongs_to :category
|
|
|
|
has_attachment :content_type => :image,
|
|
:storage => :file_system,
|
|
:max_size => 10.megabytes,
|
|
:processor => 'ImageScience',
|
|
:resize_to => '1024x1024>',
|
|
:thumbnails => { :thumb => '140x140' }
|
|
|
|
validates_as_attachment
|
|
end
|