aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserManagement.cs
diff options
context:
space:
mode:
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}