Files
openfoodnetwork/app/models/invoice/data_presenter/product.rb
Mohamed ABDELLANI 61d58df56f fix linter issues
2023-06-18 21:03:13 +02:00

11 lines
200 B
Ruby

# frozen_string_literal: false
class Invoice
class DataPresenter
class Product < Invoice::DataPresenter::Base
attributes :name
attributes_with_presenter :supplier
end
end
end