Skip to content

Instantly share code, notes, and snippets.

@jmcbri
jmcbri / example_controller.rb
Created March 8, 2017 10:55 — forked from TheKidCoder/example_controller.rb
Rails - Sanitize Ordering Params
class ExampleController
include OrderingHelpers
def index
@clients = Clients.order(sanitized_ordering).where(user_id: current_user.id)
end
end