diff options
author | Justin Clark-Casey (justincc) | 2011-10-06 23:47:41 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-06 23:47:41 +0100 |
commit | 4c812884be59d76039afee74725fc45981356f36 (patch) | |
tree | cadeb4f67773717f55d679df45035b8f84d15905 /OpenSim/Services | |
parent | WebStats - Home Link Fix (diff) | |
parent | Simplified IsInTransit property on ScenePresence and removed InTransit() whic... (diff) | |
download | opensim-SC_OLD-4c812884be59d76039afee74725fc45981356f36.zip opensim-SC_OLD-4c812884be59d76039afee74725fc45981356f36.tar.gz opensim-SC_OLD-4c812884be59d76039afee74725fc45981356f36.tar.bz2 opensim-SC_OLD-4c812884be59d76039afee74725fc45981356f36.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserAccountService.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index 20414f6..cadf297 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs | |||
@@ -44,6 +44,17 @@ namespace OpenSim.Services.Interfaces | |||
44 | PrincipalID = principalID; | 44 | PrincipalID = principalID; |
45 | } | 45 | } |
46 | 46 | ||
47 | public UserAccount(UUID scopeID, string firstName, string lastName, string email) | ||
48 | { | ||
49 | PrincipalID = UUID.Random(); | ||
50 | ScopeID = scopeID; | ||
51 | FirstName = firstName; | ||
52 | LastName = lastName; | ||
53 | Email = email; | ||
54 | ServiceURLs = new Dictionary<string, object>(); | ||
55 | Created = Util.UnixTimeSinceEpoch(); | ||
56 | } | ||
57 | |||
47 | public UserAccount(UUID scopeID, UUID principalID, string firstName, string lastName, string email) | 58 | public UserAccount(UUID scopeID, UUID principalID, string firstName, string lastName, string email) |
48 | { | 59 | { |
49 | PrincipalID = principalID; | 60 | PrincipalID = principalID; |