From b2b5675bd4b43861f95d3b576b427db519c17728 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 22 Jul 2008 17:43:09 +0000 Subject: * refactor: move new inventory service call by user server to OGS1 with all the other service calls * will post to mailing list about moving this shortly --- OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Communications') diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index 4e4bfe8..05ecfcc 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs @@ -306,9 +306,10 @@ namespace OpenSim.Region.Communications.OGS1 return null; } - public bool CreateNewUserInventory(LLUUID user) + public bool CreateNewUserInventory(LLUUID userId) { - return false; + return SynchronousRestObjectPoster.BeginPostObject( + "POST", _inventoryServerUrl + "CreateInventory/", userId.UUID); } // See IInventoryServices -- cgit v1.1