Skip to content

Instantly share code, notes, and snippets.

@iosadchiy
Created June 2, 2011 11:50
Show Gist options
  • Save iosadchiy/1004291 to your computer and use it in GitHub Desktop.
Save iosadchiy/1004291 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
include InheritedResources::DSL
protect_from_forgery
before_filter :categories_for_menu
private
def categories_for_menu
@root_category, @menu_categories = Category.arrange.first
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment