Merge pull request #368 from YunoHost/fix-user-password-change

[fix] User edition: alias and password change
This commit is contained in:
Alexandre Aubin 2021-06-02 20:13:32 +02:00 committed by GitHub
commit eba0c58d47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -273,13 +273,17 @@ export default {
if (!Object.prototype.hasOwnProperty.call(formData, 'mailbox_quota')) {
formData.mailbox_quota = ''
}
if (Object.prototype.hasOwnProperty.call(formData, 'password')) {
formData['change-password'] = formData.password
}
for (const key of ['mail_aliases', 'mail_forward']) {
const dashedKey = key.replace('_', '-')
const newKey = key.replace('_', '').replace('es', '')
const addDiff = arrayDiff(formData[key], user[dashedKey])
const rmDiff = arrayDiff(user[dashedKey], formData[key])
if (addDiff.length) data['add_' + newKey] = addDiff
if (rmDiff.length) data['remove_' + newKey] = rmDiff
if (addDiff.length) data['add_' + newKey + '[]'] = addDiff
if (rmDiff.length) data['remove_' + newKey + '[]'] = rmDiff
}
for (const key in formData) {