diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Addons/Groups/IGroupsServicesConnector.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Addons/Groups/IGroupsServicesConnector.cs b/OpenSim/Addons/Groups/IGroupsServicesConnector.cs index a09b59e..8a6e88d 100644 --- a/OpenSim/Addons/Groups/IGroupsServicesConnector.cs +++ b/OpenSim/Addons/Groups/IGroupsServicesConnector.cs | |||
@@ -34,9 +34,9 @@ namespace OpenSim.Groups | |||
34 | { | 34 | { |
35 | public interface IGroupsServicesConnector | 35 | public interface IGroupsServicesConnector |
36 | { | 36 | { |
37 | UUID CreateGroup(UUID RequestingAgentID, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, | 37 | UUID CreateGroup(UUID RequestingAgentID, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, |
38 | bool openEnrollment, bool allowPublish, bool maturePublish, UUID founderID, out string reason); | 38 | bool openEnrollment, bool allowPublish, bool maturePublish, UUID founderID, out string reason); |
39 | bool UpdateGroup(string RequestingAgentID, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, | 39 | bool UpdateGroup(string RequestingAgentID, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, |
40 | bool openEnrollment, bool allowPublish, bool maturePublish, out string reason); | 40 | bool openEnrollment, bool allowPublish, bool maturePublish, out string reason); |
41 | ExtendedGroupRecord GetGroupRecord(string RequestingAgentID, UUID GroupID, string GroupName); | 41 | ExtendedGroupRecord GetGroupRecord(string RequestingAgentID, UUID GroupID, string GroupName); |
42 | List<DirGroupsReplyData> FindGroups(string RequestingAgentID, string search); | 42 | List<DirGroupsReplyData> FindGroups(string RequestingAgentID, string search); |
@@ -75,7 +75,7 @@ namespace OpenSim.Groups | |||
75 | /// If the user is a member of the group then the data structure is returned. If not, then null is returned. | 75 | /// If the user is a member of the group then the data structure is returned. If not, then null is returned. |
76 | /// </returns> | 76 | /// </returns> |
77 | ExtendedGroupMembershipData GetAgentGroupMembership(string RequestingAgentID, string AgentID, UUID GroupID); | 77 | ExtendedGroupMembershipData GetAgentGroupMembership(string RequestingAgentID, string AgentID, UUID GroupID); |
78 | 78 | ||
79 | /// <summary> | 79 | /// <summary> |
80 | /// Get information about the groups to which a user belongs. | 80 | /// Get information about the groups to which a user belongs. |
81 | /// </summary> | 81 | /// </summary> |
@@ -87,7 +87,7 @@ namespace OpenSim.Groups | |||
87 | /// </returns> | 87 | /// </returns> |
88 | List<GroupMembershipData> GetAgentGroupMemberships(string RequestingAgentID, string AgentID); | 88 | List<GroupMembershipData> GetAgentGroupMemberships(string RequestingAgentID, string AgentID); |
89 | 89 | ||
90 | bool AddGroupNotice(string RequestingAgentID, UUID groupID, UUID noticeID, string fromName, string subject, string message, | 90 | bool AddGroupNotice(string RequestingAgentID, UUID groupID, UUID noticeID, string fromName, string subject, string message, |
91 | bool hasAttachment, byte attType, string attName, UUID attItemID, string attOwnerID); | 91 | bool hasAttachment, byte attType, string attName, UUID attItemID, string attOwnerID); |
92 | GroupNoticeInfo GetGroupNotice(string RequestingAgentID, UUID noticeID); | 92 | GroupNoticeInfo GetGroupNotice(string RequestingAgentID, UUID noticeID); |
93 | List<ExtendedGroupNoticeData> GetGroupNotices(string RequestingAgentID, UUID GroupID); | 93 | List<ExtendedGroupNoticeData> GetGroupNotices(string RequestingAgentID, UUID GroupID); |