7 lines
184 B
Ruby
Executable File
7 lines
184 B
Ruby
Executable File
class Inventory::InventoryController < ApplicationController#BaseInventoryController
|
|
|
|
def index
|
|
@products = InventoryDefinition.all.active.order('created_at desc')
|
|
end
|
|
end
|