This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |