orbit-basic/app/controllers/admin/items_controller.rb

19 lines
454 B
Ruby
Raw Normal View History

class Admin::ItemsController < ApplicationController
layout "admin"
before_filter :find_parent_item
before_filter :find_snippets, :only => :index
def index
2010-02-22 07:27:11 +00:00
@items = Item.all( :conditions => { :parent_id => @parent_item.id } )
2010-01-18 07:52:52 +00:00
@items.unshift Item.find_by_name("root") if @parent_item.name == 'root'
end
protected
def find_snippets
2010-02-22 07:27:11 +00:00
@snippets = Snippet.all( :conditions => { :parent_id => @parent_item.id } )
end
end