mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
542 B
20 lines
542 B
class BikeBrands < Netzke::Basepack::Grid
|
|
def configure(c)
|
|
super
|
|
c.model = "BikeBrand"
|
|
c.title = "Brands"
|
|
c.force_fit = true
|
|
|
|
c.prohibit_update = true if cannot? :update, BikeBrand
|
|
c.prohibit_create = true if cannot? :create, BikeBrand
|
|
c.prohibit_delete = true if cannot? :delete, BikeBrand
|
|
end
|
|
|
|
#override with nil to remove actions
|
|
def default_bbar
|
|
bbar = [ :search ]
|
|
bbar.concat [ :apply ] if can? :update, BikeBrand
|
|
bbar.concat [ :add_in_form ] if can? :create, BikeBrand
|
|
bbar
|
|
end
|
|
end
|
|
|