diff options
author | Justin Clarke Casey | 2008-09-15 17:29:11 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-15 17:29:11 +0000 |
commit | 6d289c3ae00b8d0f745d3345e8148b8d39b5206f (patch) | |
tree | 0a2f99813573fa61936202a2949532ac1f1685a1 /OpenSim/Framework/Communications/IUserService.cs | |
parent | Add the option to use Allow_osFunction = false for each OS function (diff) | |
download | opensim-SC-6d289c3ae00b8d0f745d3345e8148b8d39b5206f.zip opensim-SC-6d289c3ae00b8d0f745d3345e8148b8d39b5206f.tar.gz opensim-SC-6d289c3ae00b8d0f745d3345e8148b8d39b5206f.tar.bz2 opensim-SC-6d289c3ae00b8d0f745d3345e8148b8d39b5206f.tar.xz |
* Add "reset user password" command to standalone region console
* Grid user server implementation to follow shortly
Diffstat (limited to 'OpenSim/Framework/Communications/IUserService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index 7e3c77b..d52d1ea 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -59,7 +59,7 @@ namespace OpenSim.Framework.Communications | |||
59 | UserProfileData SetupMasterUser(UUID userId); | 59 | UserProfileData SetupMasterUser(UUID userId); |
60 | 60 | ||
61 | /// <summary> | 61 | /// <summary> |
62 | /// | 62 | /// Add a new user profile |
63 | /// </summary> | 63 | /// </summary> |
64 | /// <param name="user"></param> | 64 | /// <param name="user"></param> |
65 | UUID AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY); | 65 | UUID AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY); |
@@ -71,6 +71,15 @@ namespace OpenSim.Framework.Communications | |||
71 | /// via a call to GetUserProfile().</param> | 71 | /// via a call to GetUserProfile().</param> |
72 | /// <returns>true if the update could be applied, false if it could not be applied.</returns> | 72 | /// <returns>true if the update could be applied, false if it could not be applied.</returns> |
73 | bool UpdateUserProfile(UserProfileData data); | 73 | bool UpdateUserProfile(UserProfileData data); |
74 | |||
75 | /// <summary> | ||
76 | /// Reset a user password | ||
77 | /// </summary> | ||
78 | /// <param name="firstName"></param> | ||
79 | /// <param name="lastName"></param> | ||
80 | /// <param name="newPassword"></param> | ||
81 | /// <returns>true if the update was successful, false otherwise</returns> | ||
82 | bool ResetUserPassword(string firstName, string lastName, string newPassword); | ||
74 | 83 | ||
75 | /// <summary> | 84 | /// <summary> |
76 | /// Adds a new friend to the database for XUser | 85 | /// Adds a new friend to the database for XUser |