Added a very very very basic Web front end for admin use - ready to be used in sandbox mode for adding new accounts.

This commit is contained in:
MW
2007-03-26 16:51:50 +00:00
parent 7f18a96763
commit 42ba071276
8 changed files with 341 additions and 14 deletions

View File

@@ -57,6 +57,16 @@ namespace OpenSim.Assets
this._agentsInventory.Add(agentInventory.AgentID, agentInventory);
}
public AgentInventory GetAgentsInventory(LLUUID agentID)
{
if (this._agentsInventory.ContainsKey(agentID))
{
return this._agentsInventory[agentID];
}
return null;
}
public void ClientLeaving(LLUUID clientID)
{
if (this._agentsInventory.ContainsKey(clientID))