diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/GroupData.cs | 6 | ||||
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/GroupData.cs b/OpenSim/Framework/GroupData.cs index 76034c0..9626553 100644 --- a/OpenSim/Framework/GroupData.cs +++ b/OpenSim/Framework/GroupData.cs | |||
@@ -42,11 +42,12 @@ namespace OpenSim.Framework | |||
42 | public string GroupName; | 42 | public string GroupName; |
43 | public bool AllowPublish = true; | 43 | public bool AllowPublish = true; |
44 | public bool MaturePublish = true; | 44 | public bool MaturePublish = true; |
45 | public UUID Charter = UUID.Zero; | 45 | public string Charter; |
46 | public UUID FounderID = UUID.Zero; | 46 | public UUID FounderID = UUID.Zero; |
47 | public UUID GroupPicture = UUID.Zero; | 47 | public UUID GroupPicture = UUID.Zero; |
48 | public int MembershipFee = 0; | 48 | public int MembershipFee = 0; |
49 | public bool OpenEnrollment = true; | 49 | public bool OpenEnrollment = true; |
50 | public bool ShowInList = true; | ||
50 | 51 | ||
51 | // Per user data | 52 | // Per user data |
52 | // | 53 | // |
@@ -55,6 +56,8 @@ namespace OpenSim.Framework | |||
55 | public ulong GroupPowers = 0; | 56 | public ulong GroupPowers = 0; |
56 | public bool Active = false; | 57 | public bool Active = false; |
57 | public UUID ActiveRole = UUID.Zero; | 58 | public UUID ActiveRole = UUID.Zero; |
59 | public bool ListInProfile = false; | ||
60 | public string GroupTitle; | ||
58 | } | 61 | } |
59 | 62 | ||
60 | public struct GroupTitlesData | 63 | public struct GroupTitlesData |
@@ -92,6 +95,7 @@ namespace OpenSim.Framework | |||
92 | public ulong AgentPowers; | 95 | public ulong AgentPowers; |
93 | public string Title; | 96 | public string Title; |
94 | public bool IsOwner; | 97 | public bool IsOwner; |
98 | public bool ListInProfile; | ||
95 | } | 99 | } |
96 | 100 | ||
97 | public struct GroupRolesData | 101 | public struct GroupRolesData |
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index a8813c9..f38b57f 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -902,6 +902,7 @@ namespace OpenSim.Framework | |||
902 | 902 | ||
903 | void SendMapItemReply(mapItemReply[] replies, uint mapitemtype, uint flags); | 903 | void SendMapItemReply(mapItemReply[] replies, uint mapitemtype, uint flags); |
904 | 904 | ||
905 | void SendAvatarGroupsReply(UUID avatarID, GroupMembershipData[] data); | ||
905 | void SendOfferCallingCard(UUID srcID, UUID transactionID); | 906 | void SendOfferCallingCard(UUID srcID, UUID transactionID); |
906 | void SendAcceptCallingCard(UUID transactionID); | 907 | void SendAcceptCallingCard(UUID transactionID); |
907 | void SendDeclineCallingCard(UUID transactionID); | 908 | void SendDeclineCallingCard(UUID transactionID); |