Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ## FORM
  2.  
  3. - form_for @user, :html => { :multipart => true } do |f|
  4.  
  5. ...
  6.  
  7. %p
  8. = f.file_field :avatar
  9.  
  10. ## MODEL
  11.  
  12. has_attached_file :avatar, :styles => { :small => "150x150>", :large => "200x200>" }#,
  13. validates_attachment_size :avatar, :less_than => 2.megabyte
  14. validates_attachment_content_type :avatar, :content_type => ["images/jpeg", "image/png"]
Add Comment
Please, Sign In to add comment