Ipula Indeewara
Ipula Indeewara
> [@withanage](https://github.com/withanage) and [@ipula](https://github.com/ipula), what is the status of this one? Are there PRs that have not yet been merged to `stable-3_5_0`? @asmecher I created two PRs [UI-libarary](https://github.com/pkp/ui-library/pull/578) and [pkp-lib](https://github.com/pkp/pkp-lib/pull/11216)...
Hi @Devika008 @Tribunal33 > Part 5 As I remembered that we decided to remove roles that user accepted. Because it there are more roles ,the `title` will be large and...
@Tribunal33 when inviting user at least there is one role needs to be selected . That's why initial row does not have remove role button
@Tribunal33 @Devika008 there is a check in the [code](https://github.com/pkp/pkp-lib/blob/d048df430ea3511c6bc3d53cfeb27ec160588655/classes/services/PKPNavigationMenuService.php#L302). The navigation URL will be change according to the user roles. I will not going to change this until reviewed this
@ewhanson Somehow it returns the all user groups. I have to do some small changes. now Authorization works fine ``` $userGroups = UserGroup::withUserIds([$user->getId()]) ->withContextIds($context ? [$context->getId(), Application::SITE_CONTEXT_ID] : [Application::SITE_CONTEXT_ID]) ->whereHas('userUserGroups',...
Its return the same user groups even I use `->withUserUserGroupStatus('active')` did not filter the active ones. Then I used changed that I mention. I think `->withUserUserGroupStatus('active')` didn't use the `user...