mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-07 22:46:06 +00:00
8 lines
192 B
Ruby
8 lines
192 B
Ruby
Spree::Money.class_eval do
|
|
|
|
# return the currency symbol (on its own) for the current default currency
|
|
def self.currency_symbol
|
|
Money.new(0, Spree::Config[:currency]).symbol
|
|
end
|
|
end
|