I'm using the Vestal Version Fork here for Rails 3 support: http://github.com/adamcooper/vestal_versions/

The issue I'm having is that the updated_by => current_user is not storing in the versions table on update.

def update 
        @book = Book.find(params[:id]) 
  respond_to do |format| 
    if @book.update_attributes(params[:book].merge(:updated_by => current_user)) 
      format.html { redirect_to(@book, :notice => 'Book was 
successfully updated.') } 
      format.xml  { head :ok } 
    else 
      format.html { render :action => "edit" } 
      format.xml  { render :xml => @book.errors, :status => :unprocessable_entity } 
    end 
  end 
end 

I checked the logs, there is no error, Rails is INSERTING NULLs in the DB for the user fields, the one I need to populate is user_id

Ideas?

Thanks

link|improve this question

70% accept rate
i suppose it goes without saying that you are in fact logged in when running this code? – brad Sep 12 '10 at 18:18
Good question :) Yes I am, current_user is being used in other methods in the controller to get to the point where I can update book – AnApprentice Sep 12 '10 at 19:48
Any progress on this? I am experiencing the same behavior. – Felix Andersen Nov 26 '10 at 21:16
I was never able to get it to work. – AnApprentice Nov 26 '10 at 21:17
feedback

1 Answer

Add the following to your model class should make it work

attr_accessible  :updated_by
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.