mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
15 lines
308 B
Ruby
15 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
module Admin
|
|
module GeneralSettingsHelper
|
|
def all_units
|
|
[
|
|
WeightsAndMeasures::UNITS['weight'].values.pluck('name'),
|
|
WeightsAndMeasures::UNITS['volume'].values.pluck('name')
|
|
].flatten.uniq
|
|
end
|
|
end
|
|
end
|
|
end
|