Skip to content

Instantly share code, notes, and snippets.

@heshanh
Created January 8, 2013 10:12
Show Gist options
  • Save heshanh/4482654 to your computer and use it in GitHub Desktop.
Save heshanh/4482654 to your computer and use it in GitHub Desktop.
def create
@post = Post.new(params[:post])
if @post.save
redirect_to posts_path, :notice => 'Post saved!'
else
render "new"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment