aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2009-03-29 11:18:45 +0000
committerMelanie Thielker2009-03-29 11:18:45 +0000
commit03063375ee4c4655a9c58b9fd935a97f1386893f (patch)
tree85d03fce94cb7ea78c2b1632d5a6090ac20bf8b9
parentModule interface change (diff)
downloadopensim-SC_OLD-03063375ee4c4655a9c58b9fd935a97f1386893f.zip
opensim-SC_OLD-03063375ee4c4655a9c58b9fd935a97f1386893f.tar.gz
opensim-SC_OLD-03063375ee4c4655a9c58b9fd935a97f1386893f.tar.bz2
opensim-SC_OLD-03063375ee4c4655a9c58b9fd935a97f1386893f.tar.xz
Add AcceptNotices member to GroupMembershipData and an overload to
IGroupsModule interface
-rw-r--r--OpenSim/Framework/GroupData.cs1
-rw-r--r--OpenSim/Region/Framework/Interfaces/IGroupsModule.cs1
2 files changed, 2 insertions, 0 deletions
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
92 public string Title; 92 public string Title;
93 public bool IsOwner; 93 public bool IsOwner;
94 public bool ListInProfile; 94 public bool ListInProfile;
95 public bool AcceptNotices;
95 } 96 }
96 97
97 public struct GroupRolesData 98 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
44 List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID); 44 List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID);
45 GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID); 45 GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID);
46 GroupMembershipData[] GetMembershipData(UUID UserID); 46 GroupMembershipData[] GetMembershipData(UUID UserID);
47 GroupMembershipData GetMembershipData(UUID GroupID, UUID UserID);
47 48
48 void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish); 49 void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish);
49 50