diff --git a/web/app/utils/CurrencyUtils.scala b/web/app/utils/CurrencyUtils.scala index da3b70b0..4c301d75 100644 --- a/web/app/utils/CurrencyUtils.scala +++ b/web/app/utils/CurrencyUtils.scala @@ -6,6 +6,7 @@ object CurrencyUtils { def currencyRate(country: Option[Country]): Double = country.map(_.currencyRate).getOrElse(10.0) + def currencyName(country: Option[Country]): String = country.map(_.currencyName).getOrElse("$") }