From b907a66f394b279d3ca2b1ac620bc7bb13cc6dd2 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 4 Oct 2011 23:48:35 +0100 Subject: When creating a new user on the comand line, give the option of allowing a UUID to be specified to override the randomly generated one. This can be useful in some migration cases where recreating user accounts with known IDs will preserve region scene object ownership. --- OpenSim/Services/Interfaces/IUserAccountService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Services/Interfaces/IUserAccountService.cs') diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index 9c992e0..20414f6 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs @@ -44,9 +44,9 @@ namespace OpenSim.Services.Interfaces PrincipalID = principalID; } - public UserAccount(UUID scopeID, string firstName, string lastName, string email) + public UserAccount(UUID scopeID, UUID principalID, string firstName, string lastName, string email) { - PrincipalID = UUID.Random(); + PrincipalID = principalID; ScopeID = scopeID; FirstName = firstName; LastName = lastName; -- cgit v1.1