mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
7 lines
258 B
Ruby
7 lines
258 B
Ruby
|
class CurrenciesController < ApplicationController
|
||
|
def show
|
||
|
@currency = Money::Currency.all_instances.find { |currency| currency.iso_code == params[:id] }
|
||
|
render json: { step: @currency.step, placeholder: Money.new(0, @currency).format }
|
||
|
end
|
||
|
end
|