Don't post scim data on update

This commit is contained in:
Adria Navarro 2024-02-28 14:27:59 +01:00
parent 7c73c294b9
commit b4092fed05
1 changed files with 2 additions and 1 deletions

View File

@ -79,8 +79,9 @@
}
async function saveGroup(group) {
const { scimInfo, ...dataToSave } = group
try {
await groups.actions.save(group)
await groups.actions.save(dataToSave)
} catch (error) {
if (error.message) {
notifications.error(error.message)