add country
This commit is contained in:
parent
cd1716290c
commit
d4035de4d6
4 changed files with 97 additions and 18 deletions
|
|
@ -38,6 +38,7 @@
|
||||||
"cryptoScope": "global",
|
"cryptoScope": "global",
|
||||||
"machineScope": "both",
|
"machineScope": "both",
|
||||||
"fields": [
|
"fields": [
|
||||||
|
"country",
|
||||||
"machineLanguages",
|
"machineLanguages",
|
||||||
"cryptoCurrencies",
|
"cryptoCurrencies",
|
||||||
"topCashOutDenomination",
|
"topCashOutDenomination",
|
||||||
|
|
@ -182,6 +183,17 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"code": "country",
|
||||||
|
"displayBottom": "Country",
|
||||||
|
"fieldType": "country",
|
||||||
|
"fieldClass": null,
|
||||||
|
"fieldValidation": [
|
||||||
|
{
|
||||||
|
"code": "required"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"code": "machineLanguages",
|
"code": "machineLanguages",
|
||||||
"displayBottom": "Languages",
|
"displayBottom": "Languages",
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,8 @@ function poll (req, res, next) {
|
||||||
fiatCode: config.fiatCurrency,
|
fiatCode: config.fiatCurrency,
|
||||||
localeInfo: {
|
localeInfo: {
|
||||||
primaryLocale: langs[0],
|
primaryLocale: langs[0],
|
||||||
primaryLocales: langs
|
primaryLocales: langs,
|
||||||
|
country: config.country
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -254,6 +254,8 @@ p {
|
||||||
|
|
||||||
.lamassuAdminConfigTable .lamassuAdminSelectizeContainer .lamassuAdminBoxItem {
|
.lamassuAdminConfigTable .lamassuAdminSelectizeContainer .lamassuAdminBoxItem {
|
||||||
padding: 3px 6px;
|
padding: 3px 6px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lamassuAdminConfigTable .lamassuAdminSelectizeContainer .lamassuAdminInfo {
|
.lamassuAdminConfigTable .lamassuAdminSelectizeContainer .lamassuAdminInfo {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue