revert some changes to groups V2 that will break external modules, with no special gain

This commit is contained in:
UbitUmarov
2020-06-10 12:36:10 +01:00
parent 0d76635113
commit a61b5d5d38
8 changed files with 12 additions and 12 deletions

View File

@@ -192,10 +192,10 @@ namespace OpenSim.Groups
});
}
public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search)
public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search)
{
// TODO!
return m_GroupsService.FindGroups(RequestingAgentID, search);
return m_GroupsService.FindGroups(RequestingAgentIDstr, search);
}
public bool AddAgentToGroup(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID, string token, out string reason)