mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04:00
16 lines
296 B
Ruby
16 lines
296 B
Ruby
class UserRoles < Netzke::Basepack::Grid
|
|
|
|
def configure(c)
|
|
super
|
|
c.model = "UserRole"
|
|
c.title = "User Roles"
|
|
c.columns = [ :role, :created_at, :updated_at, :ends ]
|
|
end
|
|
|
|
#override with nil to remove actions
|
|
def default_bbar
|
|
[ :apply, :add_in_form, :search ]
|
|
end
|
|
|
|
end
|