add GetFullGroupPowers(agentID, groupID) to groups modules. This returns the 'sum' of powers of all agent roles on that group, apply it to some OSSL (mantis 8777). It May be needed elsewhere

This commit is contained in:
UbitUmarov
2020-10-09 00:20:34 +01:00
parent 89ccd601b1
commit 128e0be382
5 changed files with 68 additions and 8 deletions

View File

@@ -99,6 +99,9 @@ namespace OpenSim.Region.Framework.Interfaces
void InviteGroup(IClientAPI remoteClient, UUID agentID, UUID GroupID, UUID InviteeID, UUID RoleID);
void NotifyChange(UUID GroupID);
ulong GetFullGroupPowers(UUID agentID, UUID groupID);
List<GroupRolesData> GroupRoleDataRequest(UUID agentID, UUID groupID);
List<DirGroupsReplyData> FindGroups(IClientAPI remoteClient, string query);
}
}