class AppKit::Views::Dashboard

Attributes

items[RW]

Public Class Methods

new() click to toggle source
# File lib/app_kit/views/dashboard.rb, line 3
def initialize
  @items = []
end

Public Instance Methods

table(resource, options={}, &block) click to toggle source
Calls superclass method AppKit::Views::Base#table
# File lib/app_kit/views/dashboard.rb, line 6
def table(resource, options={}, &block)
  options[:filter] = false
  super(resource, options, &block)
end