Skip to content

Instantly share code, notes, and snippets.

@dsilver829
Created November 6, 2013 01:20
Show Gist options
  • Save dsilver829/7329317 to your computer and use it in GitHub Desktop.
Save dsilver829/7329317 to your computer and use it in GitHub Desktop.
Foo#create
def create
@assignment = Assignment.new(params[:foo])
if @assignment.save
redirect_to @assignment
else
render 'new'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment