Skip to content

Instantly share code, notes, and snippets.

@brianp
brianp / post.rb
Last active December 14, 2015 22:18 — forked from napcs/gist:2049862
class PostsController < ActionController::Base
def create
Post.create(post_params)
end
def update
Post.find(params[:id]).update_attributes!(post_params)
end
private