mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
11 lines
209 B
Ruby
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
|