mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-29 06:21:16 +00:00
18 lines
228 B
Ruby
18 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports
|
|
module Packing
|
|
class Base < ReportTemplate
|
|
SUBTYPES = ["customer", "supplier"]
|
|
|
|
|
|
|
|
private
|
|
|
|
def i18n_scope
|
|
"admin.reports"
|
|
end
|
|
end
|
|
end
|
|
end
|