Skip to content

Instantly share code, notes, and snippets.

@dmitryrck
Created September 29, 2015 17:45
Show Gist options
  • Save dmitryrck/e0e586ddaa6cdd8c575b to your computer and use it in GitHub Desktop.
Save dmitryrck/e0e586ddaa6cdd8c575b to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
protect_from_forgery :with => :exception
helper_method :categories_ordered
def categories_odered
Category.order(:name)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment