Skip to content

Instantly share code, notes, and snippets.

@lundie
Created October 19, 2011 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lundie/1298567 to your computer and use it in GitHub Desktop.
Save lundie/1298567 to your computer and use it in GitHub Desktop.
def create
@app = App.new(params[:app])
@app.original = params[:app]
respond_to do |format|
if @app.save
format.html { redirect_to(done_path(@app.member.id), :notice => 'Application was successfully created.') }
else
format.html { render :action => "new" }
end
end
end
#show the original Application
def show
@app = App.new(App.find(params[:id]).original)
end
#Model
class App < ActiveRecord::Base
has_one :applicant
serialize :original, Hash
accepts_nested_attributes_for :applicant
end
@lundie
Copy link
Author

lundie commented Oct 19, 2011

Great point. I have updated it and it seems to work. Thanks for you help!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment