aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer/GridInventoryService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/InventoryServer/GridInventoryService.cs')
-rw-r--r--OpenSim/Grid/InventoryServer/GridInventoryService.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
index f08c1e5..ffff89f 100644
--- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs
+++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs
@@ -89,7 +89,11 @@ namespace OpenSim.Grid.InventoryServer
89 return allFolders; 89 return allFolders;
90 } 90 }
91 91
92 92 /// <summary>
93 /// Return a user's entire inventory
94 /// </summary>
95 /// <param name="rawUserID"></param>
96 /// <returns></returns>
93 public InventoryCollection GetUserInventory(Guid rawUserID) 97 public InventoryCollection GetUserInventory(Guid rawUserID)
94 { 98 {
95 LLUUID userID = new LLUUID(rawUserID); 99 LLUUID userID = new LLUUID(rawUserID);
@@ -134,6 +138,11 @@ namespace OpenSim.Grid.InventoryServer
134 return GetInventorySkeleton(userID); 138 return GetInventorySkeleton(userID);
135 } 139 }
136 140
141 /// <summary>
142 /// Create an inventory for the given user.
143 /// </summary>
144 /// <param name="rawUserID"></param>
145 /// <returns></returns>
137 public bool CreateUsersInventory(Guid rawUserID) 146 public bool CreateUsersInventory(Guid rawUserID)
138 { 147 {
139 LLUUID userID = new LLUUID(rawUserID); 148 LLUUID userID = new LLUUID(rawUserID);