diff options
author | MW | 2008-02-05 13:02:03 +0000 |
---|---|---|
committer | MW | 2008-02-05 13:02:03 +0000 |
commit | 33c4631c6d1912fb4e5af65ece7a2aa80c8b0005 (patch) | |
tree | 7cdabf3047e454b5235d4e67da5e722e025f9524 /OpenSim/Region/Communications/OGS1 | |
parent | * Fix Mantis 457 (diff) | |
download | opensim-SC_OLD-33c4631c6d1912fb4e5af65ece7a2aa80c8b0005.zip opensim-SC_OLD-33c4631c6d1912fb4e5af65ece7a2aa80c8b0005.tar.gz opensim-SC_OLD-33c4631c6d1912fb4e5af65ece7a2aa80c8b0005.tar.bz2 opensim-SC_OLD-33c4631c6d1912fb4e5af65ece7a2aa80c8b0005.tar.xz |
some small changes, like adding a couple of extra methods to IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index 0d97074..1780707 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | |||
@@ -163,6 +163,16 @@ namespace OpenSim.Region.Communications.OGS1 | |||
163 | "POST", _inventoryServerUrl + "/DeleteItem/", item); | 163 | "POST", _inventoryServerUrl + "/DeleteItem/", item); |
164 | } | 164 | } |
165 | 165 | ||
166 | public bool HasInventoryForUser(LLUUID userID) | ||
167 | { | ||
168 | return false; | ||
169 | } | ||
170 | |||
171 | public InventoryFolderBase RequestRootFolder(LLUUID userID) | ||
172 | { | ||
173 | return null; | ||
174 | } | ||
175 | |||
166 | public void CreateNewUserInventory(LLUUID user) | 176 | public void CreateNewUserInventory(LLUUID user) |
167 | { | 177 | { |
168 | } | 178 | } |