Paperclip wont save image in rails app
- by Micke
Hello stackoverflow.
I am trying to use Paperclip with my rails app to add an avatar to a user but it wont save my image when creating the user.
This is what the model looks like:
class User < ActiveRecord::Base
has_attached_file :avatar
And the registerform in haml:
- form_for :user, @user, :url => { :action => "signup" }, :html…