You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
POST /sites/{siteId}/locales to support different locals.
So GET /attributes/{attributeKey}/allowedValues
can expand the results to also return locale information such as
{
"allowedValues":[
"A","B", "C"
],
"locale":{
"en":{
"A":"AAAAA",
"B":"BBBBB",
"C":"CCCCC"
}
}
}
add API endpoint such as
POST /sites/{siteId}/locales to support different locals.
So GET /attributes/{attributeKey}/allowedValues
can expand the results to also return locale information such as
{
"allowedValues":[
"A","B", "C"
],
"locale":{
"en":{
"A":"AAAAA",
"B":"BBBBB",
"C":"CCCCC"
}
}
}
DynamoDB
PK: locale#default
SK: attr#documentType#allowedValue#A
value: "AAAAA"
PK: locale#fr
SK: attr#documentType#allowedValue#A
VALUE: "BBBB"
The text was updated successfully, but these errors were encountered: