Velocipede's User, Sales, and Bike Inventory Web App
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.
|
|
|
class BikeBrands < Netzke::Basepack::Grid
|
|
|
|
def configure(c)
|
|
|
|
super
|
|
|
|
c.model = "BikeBrand"
|
|
|
|
c.title = "Brands"
|
|
|
|
|
|
|
|
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
|