diff options
author | Justin Clarke Casey | 2008-11-28 15:34:30 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-28 15:34:30 +0000 |
commit | 0862627b341641ec0223bb4191dfee8d85724c9e (patch) | |
tree | ef1815b067c345aa92a81375f12137a3e47876f3 /OpenSim/Region/Application/OpenSimBase.cs | |
parent | * Changed name of auth function to better reflect actual use (diff) | |
download | opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.zip opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.gz opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.bz2 opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.xz |
* refactor: move CreateUser into UserServiceAdmin
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index fb620c3..7ccb3d4 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -298,11 +298,6 @@ namespace OpenSim | |||
298 | m_assetCache = new AssetCache(assetServer); | 298 | m_assetCache = new AssetCache(assetServer); |
299 | } | 299 | } |
300 | 300 | ||
301 | public UUID CreateUser(string tempfirstname, string templastname, string tempPasswd, string email, uint regX, uint regY) | ||
302 | { | ||
303 | return m_commsManager.AddUser(tempfirstname, templastname, tempPasswd, email, regX, regY); | ||
304 | } | ||
305 | |||
306 | public void ProcessLogin(bool LoginEnabled) | 301 | public void ProcessLogin(bool LoginEnabled) |
307 | { | 302 | { |
308 | if (LoginEnabled) | 303 | if (LoginEnabled) |
@@ -314,8 +309,7 @@ namespace OpenSim | |||
314 | { | 309 | { |
315 | m_log.Info("[Login] Login are now disabled "); | 310 | m_log.Info("[Login] Login are now disabled "); |
316 | m_commsManager.GridService.RegionLoginsEnabled = false; | 311 | m_commsManager.GridService.RegionLoginsEnabled = false; |
317 | } | 312 | } |
318 | |||
319 | } | 313 | } |
320 | 314 | ||
321 | /// <summary> | 315 | /// <summary> |