Skip to content

Instantly share code, notes, and snippets.

@jarod022
Forked from gnepud/gist:1977770
Created March 10, 2012 18:18
Show Gist options
  • Save jarod022/2012365 to your computer and use it in GitHub Desktop.
Save jarod022/2012365 to your computer and use it in GitHub Desktop.
class PostsController < ActionController::Base
def create
Post.create(post_params)
end
def update
Post.find(params[:id]).update_attributes!(post_params)
end
private
def post_params
params[:post].slice(:title, :content)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment