aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1
diff options
context:
space:
mode:
authorMW2008-02-13 14:45:13 +0000
committerMW2008-02-13 14:45:13 +0000
commit49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641 (patch)
treeac5c1949a294220c9e1949fd51e35f50d5cc220e /OpenSim/Region/Communications/OGS1
parent* Copied 'Friends' functionality from the MySQLUserData to MSSQLUserData (diff)
downloadopensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.zip
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.gz
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.bz2
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.xz
Added a method to access a named folder in a users inventory, to the inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
index 81689ed..8ff62d0 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
@@ -175,6 +175,11 @@ namespace OpenSim.Region.Communications.OGS1
175 return null; 175 return null;
176 } 176 }
177 177
178 public virtual InventoryFolderBase RequestNamedFolder(LLUUID userID, string folderName)
179 {
180 return null;
181 }
182
178 public void CreateNewUserInventory(LLUUID user) 183 public void CreateNewUserInventory(LLUUID user)
179 { 184 {
180 } 185 }