Transform currency support v2 #23

Merged
bilal.catic merged 4 commits from transform-currency-support-v2 into master 2020-10-06 14:41:29 +02:00
Showing only changes of commit 7458cd3b75 - Show all commits

View File

@@ -6,6 +6,7 @@ class ChipsController < ApplicationController
name: 'US Dollar',
symbol: '$',
code: 'USD',
scale: 2,
prefixed: true
},
{
@@ -13,6 +14,7 @@ class ChipsController < ApplicationController
name: 'Bosnian Convertible Mark',
symbol: 'KM',
code: 'BAM',
scale: 2,
prefixed: false
},
{
@@ -20,6 +22,7 @@ class ChipsController < ApplicationController
name: 'Euro',
symbol: '€',
code: 'EUR',
scale: 3,
prefixed: false
}
]