Use PictureUploader on Lodging

This commit is contained in:
Henne Vogelsang 2016-04-27 15:27:33 +02:00
parent 40023044af
commit 0ad3ff01c3
5 changed files with 11 additions and 17 deletions

View file

@ -3,10 +3,5 @@ class Lodging < ActiveRecord::Base
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 }
mount_uploader :picture, PictureUploader, mount_on: :photo_file_name
end