diff options
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginResponse.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index e2f947c..da6c016 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -233,7 +233,7 @@ namespace OpenSim.Services.LLLoginService | |||
233 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, | 233 | GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService, |
234 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, | 234 | string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message, |
235 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency, | 235 | GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency, |
236 | string DSTZone, UUID realID) | 236 | string DSTZone, string destinationsURL, string avatarsURL, UUID realID) |
237 | : this() | 237 | : this() |
238 | { | 238 | { |
239 | FillOutInventoryData(invSkel, libService); | 239 | FillOutInventoryData(invSkel, libService); |
@@ -253,6 +253,8 @@ namespace OpenSim.Services.LLLoginService | |||
253 | MapTileURL = mapTileURL; | 253 | MapTileURL = mapTileURL; |
254 | ProfileURL = profileURL; | 254 | ProfileURL = profileURL; |
255 | OpenIDURL = openIDURL; | 255 | OpenIDURL = openIDURL; |
256 | DestinationsURL = destinationsURL; | ||
257 | AvatarsURL = avatarsURL; | ||
256 | 258 | ||
257 | SearchURL = searchURL; | 259 | SearchURL = searchURL; |
258 | Currency = currency; | 260 | Currency = currency; |
@@ -543,6 +545,12 @@ namespace OpenSim.Services.LLLoginService | |||
543 | if (profileURL != String.Empty) | 545 | if (profileURL != String.Empty) |
544 | responseData["profile-server-url"] = profileURL; | 546 | responseData["profile-server-url"] = profileURL; |
545 | 547 | ||
548 | if (DestinationsURL != String.Empty) | ||
549 | responseData["destination_guide_url"] = DestinationsURL; | ||
550 | |||
551 | if (AvatarsURL != String.Empty) | ||
552 | responseData["avatar_picker_url"] = AvatarsURL; | ||
553 | |||
546 | // We need to send an openid_token back in the response too | 554 | // We need to send an openid_token back in the response too |
547 | if (openIDURL != String.Empty) | 555 | if (openIDURL != String.Empty) |
548 | responseData["openid_url"] = openIDURL; | 556 | responseData["openid_url"] = openIDURL; |
@@ -1073,6 +1081,16 @@ namespace OpenSim.Services.LLLoginService | |||
1073 | set { currency = value; } | 1081 | set { currency = value; } |
1074 | } | 1082 | } |
1075 | 1083 | ||
1084 | public string DestinationsURL | ||
1085 | { | ||
1086 | get; set; | ||
1087 | } | ||
1088 | |||
1089 | public string AvatarsURL | ||
1090 | { | ||
1091 | get; set; | ||
1092 | } | ||
1093 | |||
1076 | #endregion | 1094 | #endregion |
1077 | 1095 | ||
1078 | public class UserInfo | 1096 | public class UserInfo |