[bugfix] use correct key for PATCHing admin email (#1189)

This commit is contained in:
tobi
2022-11-30 16:41:27 +01:00
committed by GitHub
parent 927117d8e3
commit 8d581deb28

View File

@ -33,7 +33,10 @@ module.exports = function ({ apiCall, getChanges }) {
const update = getChanges(state, {
formKeys: ["title", "short_description", "description", "contact_account.username", "email", "terms", "thumbnail_description"],
renamedKeys: {"contact_account.username": "contact_username"},
renamedKeys: {
"email": "contact_email",
"contact_account.username": "contact_username"
},
fileKeys: ["thumbnail"]
});