diff options
author | Diva Canto | 2010-01-09 18:04:50 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-09 18:04:50 -0800 |
commit | 96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1 (patch) | |
tree | 330ddb23901e60acc9772b6df48a7795f51e3bbe /OpenSim/Services/Connectors/Authentication | |
parent | Merge branch 'presence-refactor' of melanie@opensimulator.org:/var/git/opensi... (diff) | |
download | opensim-SC_OLD-96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1.zip opensim-SC_OLD-96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1.tar.gz opensim-SC_OLD-96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1.tar.bz2 opensim-SC_OLD-96ecdcf9c5ba35e589a599ad37cc6ce1a83f46f1.tar.xz |
* Added SetPassword to IAuthenticationService.
* Added create user command to UserAccountService. Works.
* Deleted create user command from OpenSim.
Diffstat (limited to 'OpenSim/Services/Connectors/Authentication')
-rw-r--r-- | OpenSim/Services/Connectors/Authentication/AuthenticationServiceConnector.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Authentication/AuthenticationServiceConnector.cs b/OpenSim/Services/Connectors/Authentication/AuthenticationServiceConnector.cs index 1250658..f36fe5b 100644 --- a/OpenSim/Services/Connectors/Authentication/AuthenticationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Authentication/AuthenticationServiceConnector.cs | |||
@@ -146,5 +146,11 @@ namespace OpenSim.Services.Connectors | |||
146 | 146 | ||
147 | return true; | 147 | return true; |
148 | } | 148 | } |
149 | |||
150 | public bool SetPassword(UUID principalID, string passwd) | ||
151 | { | ||
152 | // nope, we don't do this | ||
153 | return false; | ||
154 | } | ||
149 | } | 155 | } |
150 | } | 156 | } |