frontend: whitelist currencies two more currencies

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-07-03 12:10:52 -07:00
parent 0b192fa95c
commit 684c6020cb

View file

@ -25,7 +25,12 @@ const (
var (
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{}