Skip to content

Instantly share code, notes, and snippets.

View gotascii's full-sized avatar

Justin Marney gotascii

  • San Francisco, CA
View GitHub Profile
def PostsController < ActionController::Base
def create
@post = Post.new(params[:post])
if @post.save
redirect_to posts_path
else
render :action => "new"
end
end