mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Allow IInventoryService.GetFolder(folderId, userId) as well as GetFolder(InventoryFolderBase folder)
This involves no wire changes since the methods often just construct an InventoryFolderBase under the hood. This is in line with other methods that alraedy allow requests via uuid
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* Copyright (c) Contributors, http://opensimulator.org/
|
||||
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
||||
*
|
||||
@@ -229,12 +229,14 @@ namespace OpenSim.Region.CoreModules.Framework.Library
|
||||
/// <returns></returns>
|
||||
public InventoryItemBase GetItem(InventoryItemBase item) { return null; }
|
||||
|
||||
public InventoryFolderBase GetFolder(UUID folderId, UUID userId) { return null; }
|
||||
|
||||
/// <summary>
|
||||
/// Get a folder, given by its UUID
|
||||
/// </summary>
|
||||
/// <param name="folder"></param>
|
||||
/// <returns></returns>
|
||||
public InventoryFolderBase GetFolder(InventoryFolderBase folder) { return null; }
|
||||
public InventoryFolderBase GetFolder(InventoryFolderBase folder) { return null; }
|
||||
|
||||
/// <summary>
|
||||
/// Does the given user have an inventory structure?
|
||||
|
||||
Reference in New Issue
Block a user