1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
BikeShed-1/app/components/users_and_customers_lower_tabs.rb
2013-11-09 11:29:08 -05:00

11 lines
209 B
Ruby

class UsersAndCustomersLowerTabs < Netzke::Basepack::TabPanel
component :customers
component :users
def configure(c)
c.prevent_header = true
c.items = [ :users, :customers ]
super
end
end