Brett
Brett
Great idea, any luck making it happen?
Any plans to resolve?
@lailsonbm love it, thank you! You just made a newbie's day.
@lailsonbm Do you know if this forked version supports the updated_by? In my: def update @book = Book.find(params[:id], :updated_by => current_user) end I'm getting the following error: "Unknown key(s): updated_by"
Scratch that, I'm using: def update @book = Book.find(params[:id]) if @book.update_attributes(params[:book].merge(:updated_by => current_user)) . . . end The book is updating and a version is being saved but not with...
How do you get the vestial_versions :updated_by to work when updating a record? I'd like to record the user_id on every version record. thanks
schlick, thanks for the reply (I've been stuck on this for days, so highly appreciated). Right now I'm using the Rails 3 fork here: "gem 'vestal_versions', :git => 'git://github.com/lailsonbm/vestal_versions', :branch...
That's to bad, if it were Rails 2+ would the pastebin code work fine? Just curious if it's my code or vestal_version's fork..... Re laserlemon, according to his Twitter: http://twitter.com/laserlemon/status/24332546385
@Adam, thanks! You're a real mench. I'll try that this afternoon... Random (kinda), have you ever gotten paperclip to work with Vestal_Versions, so that when you update images they aren't...
I'm running into the same issue. Did you guys ever figure out a way to get the user info in the versions table?