From 03063375ee4c4655a9c58b9fd935a97f1386893f Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sun, 29 Mar 2009 11:18:45 +0000 Subject: Add AcceptNotices member to GroupMembershipData and an overload to IGroupsModule interface --- OpenSim/Framework/GroupData.cs | 1 + OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs index 8b8c6e0..178193e 100644 --- a/OpenSim/Framework/GroupData.cs +++ b/OpenSim/Framework/GroupData.cs @@ -92,6 +92,7 @@ namespace OpenSim.Framework public string Title; public bool IsOwner; public bool ListInProfile; + public bool AcceptNotices; } public struct GroupRolesData diff --git a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs index 620ae4f..dad08ba 100644 --- a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs @@ -44,6 +44,7 @@ namespace OpenSim.Region.Framework.Interfaces List GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID); GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID); GroupMembershipData[] GetMembershipData(UUID UserID); + GroupMembershipData GetMembershipData(UUID GroupID, UUID UserID); void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish); -- cgit v1.1