Files
sx-fc/app/controllers/inventory/inventory_controller.rb
2017-08-28 09:37:36 +06:30

7 lines
162 B
Ruby

class Inventory::InventoryController < BaseInventoryController
def index
@products = InventoryDefinition.all.active.order('created_at desc')
end
end