mockra

Rails Parameters - 04 Mar 2012


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
view raw gistfile1.rb hosted with ❤ by GitHub

What 37Signals is using to protect their apps from mass assignment.