aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Interfaces/IGroupsModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Interfaces/IGroupsModule.cs')
-rw-r--r--OpenSim/Region/Interfaces/IGroupsModule.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Interfaces/IGroupsModule.cs b/OpenSim/Region/Interfaces/IGroupsModule.cs
index 17daf3e..8565e04 100644
--- a/OpenSim/Region/Interfaces/IGroupsModule.cs
+++ b/OpenSim/Region/Interfaces/IGroupsModule.cs
@@ -40,6 +40,15 @@ namespace OpenSim.Region.Interfaces
40 List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID); 40 List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID);
41 List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID); 41 List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID);
42 GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID); 42 GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID);
43 GroupMembershipData[] GetMembershipData(UUID UserID);
43 44
45 void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish);
46
47 void SetGroupAcceptNotices(IClientAPI remoteClient, UUID groupID, bool acceptNotices, bool listInProfile);
48
49 void GroupTitleUpdate(IClientAPI remoteClient, UUID GroupID, UUID TitleRoleID);
50 UUID CreateGroup(IClientAPI remoteClient, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish);
51
52 void SendAgentGroupDataUpdate(IClientAPI remoteClient);
44 } 53 }
45} 54}