Skip to content

Instantly share code, notes, and snippets.

View allard's full-sized avatar

Johan Allard allard

  • Sydney, Australia
View GitHub Profile
class PostsController < ActionController::Base
def create
Post.create(post_params)
end
def update
Post.find(params[:id]).update_attributes!(post_params)
end
private