-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Remove the user from the old group synchronized profile property groups - EXO-64814 - Meeds-io/meeds#1052 #2702
Conversation
…tions list - EXO-64105 - Meeds-io/meeds#950 Prior to this change, when click on the three dots of a card user in a space member and check the display of the list options, this list must contain 6 options but the last option is hidden behind the card below To fix this problem, while clicking on the three dots we increase the z-index of this card. After this change, the list of options is displayed on the card below.
…erties including the first name or the last name - EXO-65382 - Meeds-io/meeds#1050 (#2697) Prior to this change, after updating multiple profile properties including the first name or the last name, the full name was not being updated. This issue occurred because the full name property was only updated when either the first name or the last name was changed. In the case of updating multiple properties at once, we need to fetch the newly updated profile to utilize the new value of the full name.
…e - EXO-65724 - Meeds-io/meeds#1054 Prior to this change, when Open notification drawer and close a notification, The intended to be closed notification is opened instead. After this change, This notification is closed.
@@ -126,6 +127,7 @@ private void synchronizeProperty(Map.Entry<String, Object> property, Group profi | |||
Group newPropertyNameGroup = getOrCreateGroup(propertyName, profileGroup); | |||
try { | |||
Group newPropertyValueGroup = getOrCreateGroup(propertyValue, newPropertyNameGroup); | |||
removeUserFromExistingPropertyGroup(newPropertyNameGroup, user); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aren't you removing then adding the user to the same group here ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are removing the user from the existing child group, and then adding them to the newly created child group within the same larger (parent) group!
fix: [Notifications] Notification drawer : close a notification issue - EXO-65724 - Meeds-io/meeds#1054
da04fa6
to
15e33e9
Compare
Kudos, SonarCloud Quality Gate passed! |
… groups - EXO-64814 - Meeds-io/meeds#1052 (#2702) Prior to this change, after editing a group-synchronized profile property, a new group was created, and the user continued to be displayed among the members of the old group This change is going to remove the user from the old group synchronized profile property groups.
… groups - EXO-64814 - Meeds-io/meeds#1052 (#2702) Prior to this change, after editing a group-synchronized profile property, a new group was created, and the user continued to be displayed among the members of the old group This change is going to remove the user from the old group synchronized profile property groups.
… groups - EXO-64814 - Meeds-io/meeds#1052 (#2702) Prior to this change, after editing a group-synchronized profile property, a new group was created, and the user continued to be displayed among the members of the old group This change is going to remove the user from the old group synchronized profile property groups.
Prior to this change, after editing a group-synchronized profile property, a new group was created, and the user continued to be displayed among the members of the old group
This change is going to remove the user from the old group synchronized profile property groups.