aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-18 22:51:40 +0100
committerJustin Clark-Casey (justincc)2011-10-18 22:51:40 +0100
commitc85a780583cb36bac95f69c5d704f60a758d56bb (patch)
tree9ccd6c377ca205125020a9708038b32985ccdd13 /OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs
parentTemporarily put in log lines to record time taken to set terrain in OdeScene. (diff)
downloadopensim-SC_OLD-c85a780583cb36bac95f69c5d704f60a758d56bb.zip
opensim-SC_OLD-c85a780583cb36bac95f69c5d704f60a758d56bb.tar.gz
opensim-SC_OLD-c85a780583cb36bac95f69c5d704f60a758d56bb.tar.bz2
opensim-SC_OLD-c85a780583cb36bac95f69c5d704f60a758d56bb.tar.xz
Provide an option to allow remote calls to the CreateUser method on the UserAccountService
Default is false, as before. Enabling AllowCreateUser in [UserAccountService] for ROBUST allows avatars to be created via an http call, with viewer 2 appropriate bits and pieces. Only Ruths can be created at present. Please don't rely on the config since at some point CreateUser will be moved to a separate co-ordinating service.
Diffstat (limited to 'OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs')
-rw-r--r--OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs
index f17a8de..344b513 100644
--- a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs
+++ b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerConnector.cs
@@ -55,7 +55,7 @@ namespace OpenSim.Server.Handlers.UserAccounts
55 Object[] args = new Object[] { config }; 55 Object[] args = new Object[] { config };
56 m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(service, args); 56 m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(service, args);
57 57
58 server.AddStreamHandler(new UserAccountServerPostHandler(m_UserAccountService)); 58 server.AddStreamHandler(new UserAccountServerPostHandler(m_UserAccountService, serverConfig));
59 } 59 }
60 } 60 }
61} 61}