Guest User

Untitled

a guest
Jan 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. class Product < ActiveRecord::Base
  2. # attr_accessible :user_id, :title, :description, :category_id, :resolution, :opens_with, :photo, :price, :action_version, :status, :featured, :approval, :rating_average
  3. has_attached_file :photo, :styles => { :thumb => "100x100>" }
  4.  
  5.  
  6.  
  7. validates_attachment_presence :photo
  8. validates_attachment_size :photo, :less_than => 5.megabytes
  9. validates_attachment_content_type :photo, :content_type => ['image/jpeg', 'image/x-png']
  10. end
Add Comment
Please, Sign In to add comment