frontend: whitelist currencies two more currencies
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
parent
0b192fa95c
commit
684c6020cb
1 changed files with 6 additions and 1 deletions
|
@ -25,7 +25,12 @@ const (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
whitelistedCurrencies = map[string]bool{
|
whitelistedCurrencies = map[string]bool{
|
||||||
"USD": true, "EUR": true, "CAD": true, "JPY": true}
|
"USD": true,
|
||||||
|
"EUR": true,
|
||||||
|
"CAD": true,
|
||||||
|
"JPY": true,
|
||||||
|
"GBP": true,
|
||||||
|
"TRY": true}
|
||||||
)
|
)
|
||||||
|
|
||||||
type ctxKeySessionID struct{}
|
type ctxKeySessionID struct{}
|
||||||
|
|
Loading…
Add table
Reference in a new issue