From 02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8 Mon Sep 17 00:00:00 2001
From: Charles Krinke
Date: Sun, 23 Nov 2008 03:38:40 +0000
Subject: Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that: This
patch adds the option of adding the email when you create a new user. This
works in Gridmode as none Gridmode. This option is also added to
RemoteAdminPlugin. With a new handler you can create a user with a email.
---
OpenSim/Framework/Communications/IUserService.cs | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
(limited to 'OpenSim/Framework/Communications/IUserService.cs')
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs
index 50c9917..178b5a0 100644
--- a/OpenSim/Framework/Communications/IUserService.cs
+++ b/OpenSim/Framework/Communications/IUserService.cs
@@ -35,15 +35,15 @@ namespace OpenSim.Framework.Communications
///
/// Loads a user profile by name
///
- /// First name
- /// Last name
+ /// First name
+ /// Last name
/// A user profile. Returns null if no profile is found
UserProfileData GetUserProfile(string firstName, string lastName);
///
/// Loads a user profile from a database by UUID
///
- /// The target UUID
+ /// The target UUID
/// A user profile. Returns null if no user profile is found.
UserProfileData GetUserProfile(UUID userId);
@@ -90,8 +90,8 @@ namespace OpenSim.Framework.Communications
///
/// Logs off a user on the user server
///
- /// UUID of the user
- /// UUID of the Region
+ /// UUID of the user
+ /// UUID of the Region
/// regionhandle
/// final position
/// final lookat
@@ -100,8 +100,8 @@ namespace OpenSim.Framework.Communications
///
/// Logs off a user on the user server (deprecated as of 2008-08-27)
///
- /// UUID of the user
- /// UUID of the Region
+ /// UUID of the user
+ /// UUID of the Region
/// regionhandle
/// final position x
/// final position y
@@ -118,7 +118,8 @@ namespace OpenSim.Framework.Communications
/// Updates the current region the User is in
///
/// User Region the Avatar is IN
- /// User Region the Avatar is IN
+ /// User Region the Avatar is IN
+ /// User region handle
void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle);
///
--
cgit v1.1