27 Aug 2020, 08:58

Sometime due to same name it can be a problem to uniquely identify a user while adding into groups or in team so it can be easily done in project by below step:

Locate path in your project:

vendor->uvdesk/core-framework/Resources/views/Groups/createSupportGroup.html

vendor->uvdesk/core-framework/Resources/views/Groups/updateSupportGroup.html

open createSupportGroup.html and updateSupportGroup.html and make update as suggested below.

For group user new group create:

https://github.com/uvdesk/core-framework/blob/master/Resources/views/Groups/createSupportGroup.html.twig#L54

https://github.com/uvdesk/core-framework/blob/master/Resources/views/Groups/createSupportGroup.html.twig#L66

Write email in place of name like instead of agent.name write agent.email

For group user group update:

https://github.com/uvdesk/core-framework/blob/master/Resources/views/Groups/updateSupportGroup.html.twig#L54

https://github.com/uvdesk/core-framework/blob/master/Resources/views/Groups/updateSupportGroup.html.twig#L66

Do the same with other where you want to update.

Thanks !!