aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index 969bdd8..1ac5fe4 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -256,6 +256,18 @@ namespace OpenSim.Framework.Communications
256 return userProf.ID; 256 return userProf.ID;
257 } 257 }
258 } 258 }
259
260 /// <summary>
261 /// Reset a user password
262 /// </summary>
263 /// <param name="firstName"></param>
264 /// <param name="lastName"></param>
265 /// <param name="newPassword"></param>
266 /// <returns>true if the update was successful, false otherwise</returns>
267 public bool ResetUserPassword(string firstName, string lastName, string newPassword)
268 {
269 return m_userService.ResetUserPassword(firstName, lastName, newPassword);
270 }
259 271
260 #region Friend Methods 272 #region Friend Methods
261 273