aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r--OpenSim/Grid/InventoryServer/GridInventoryService.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
index cfe06e8..a003cd3 100644
--- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs
+++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
@@ -136,6 +136,17 @@ namespace OpenSim.Grid.InventoryServer
136 136
137 return invCollection; 137 return invCollection;
138 } 138 }
139
140 /// <summary>
141 /// Guid to UUID wrapper for same name IInventoryServices method
142 /// </summary>
143 /// <param name="rawUserID"></param>
144 /// <returns></returns>
145 public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID)
146 {
147 LLUUID userID = new LLUUID(rawUserID);
148 return GetInventorySkeleton(userID);
149 }
139 150
140 public bool CreateUsersInventory(Guid rawUserID) 151 public bool CreateUsersInventory(Guid rawUserID)
141 { 152 {