aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserManagement.cs
diff options
context:
space:
mode:
authoronefang2021-08-26 06:21:19 +1000
committeronefang2021-08-26 06:21:19 +1000
commitcdfbb899f1112dab44d5490838765e9bd73bc60e (patch)
tree52cddd0b76e7ad8544a0ada533f91bb5fc402025 /OpenSim/Services/Interfaces/IUserManagement.cs
parentStill failing to reconnect for dbCount(), just set the fucking timeout to a y... (diff)
parentDon't strip (OWNER) out of script error report. (diff)
downloadopensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.zip
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.gz
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.bz2
opensim-SC-cdfbb899f1112dab44d5490838765e9bd73bc60e.tar.xz
Merge branch 'switch' into Domme.
Diffstat (limited to 'OpenSim/Services/Interfaces/IUserManagement.cs')
-rw-r--r--OpenSim/Services/Interfaces/IUserManagement.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Interfaces/IUserManagement.cs b/OpenSim/Services/Interfaces/IUserManagement.cs
index 91b344e..39268c0 100644
--- a/OpenSim/Services/Interfaces/IUserManagement.cs
+++ b/OpenSim/Services/Interfaces/IUserManagement.cs
@@ -42,7 +42,7 @@ namespace OpenSim.Services.Interfaces
42 string GetUserUUI(UUID uuid); 42 string GetUserUUI(UUID uuid);
43 bool GetUserUUI(UUID userID, out string uui); 43 bool GetUserUUI(UUID userID, out string uui);
44 string GetUserServerURL(UUID uuid, string serverType); 44 string GetUserServerURL(UUID uuid, string serverType);
45 Dictionary<UUID,string> GetUsersNames(string[] ids); 45 Dictionary<UUID,string> GetUsersNames(string[] ids, UUID scopeID);
46 46
47 /// <summary> 47 /// <summary>
48 /// Get user ID by the given name. 48 /// Get user ID by the given name.
@@ -92,7 +92,7 @@ namespace OpenSim.Services.Interfaces
92 /// <param name="firstName"></param> 92 /// <param name="firstName"></param>
93 /// <param name="profileURL"></param> 93 /// <param name="profileURL"></param>
94 void AddUser(UUID uuid, string firstName, string lastName, string homeURL); 94 void AddUser(UUID uuid, string firstName, string lastName, string homeURL);
95 95 bool RemoveUser(UUID uuid);
96 bool IsLocalGridUser(UUID uuid); 96 bool IsLocalGridUser(UUID uuid);
97 } 97 }
98} 98}