Files
sx-fc/app/controllers/inventory/inventory_controller.rb
2017-10-23 11:40:37 +06:30

7 lines
162 B
Ruby
Executable File

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