-
Notifications
You must be signed in to change notification settings - Fork 33
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 visibility of participant list singleitem menu #3541
Fix visibility of participant list singleitem menu #3541
Conversation
This issue is not about, what is seen in the @Elblinator please retest, and for the other stuff open a new issue. |
@@ -454,6 +454,10 @@ export class ParticipantListComponent extends BaseMeetingListViewComponent<ViewU | |||
await this.repo.removeUsersFromMeeting([user]); | |||
} | |||
|
|||
public canSeeSingleItemMenu(user: ViewUser): boolean { | |||
return this.operator.hasPerms(Permission.userCanManage) || this.canChangePassword(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.
please change to this.operator.hasPerms(Permission.userCanUpdate)
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.
done
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.
Please change the permission
I'll create a new Issue for my previous CR
#3558
okay, I have changed the permission check in canSeeSingleItemMenu. |
Resolve #3486