aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorUbitUmarov2018-10-20 14:04:11 +0100
committerUbitUmarov2018-10-20 14:04:11 +0100
commit6d063785bdc3bd8e8398c71f214dd25af965e588 (patch)
treee3005014b71d50c068fdf64c83e6252dd653c163 /OpenSim/Services/Interfaces
parentfix groups v2 agentUUI ofr uuid.zero case (diff)
downloadopensim-SC-6d063785bdc3bd8e8398c71f214dd25af965e588.zip
opensim-SC-6d063785bdc3bd8e8398c71f214dd25af965e588.tar.gz
opensim-SC-6d063785bdc3bd8e8398c71f214dd25af965e588.tar.bz2
opensim-SC-6d063785bdc3bd8e8398c71f214dd25af965e588.tar.xz
add RemoveUser to UserManagement
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IUserManagement.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserManagement.cs b/OpenSim/Services/Interfaces/IUserManagement.cs
index 91b344e..3bdf86d 100644
--- a/OpenSim/Services/Interfaces/IUserManagement.cs
+++ b/OpenSim/Services/Interfaces/IUserManagement.cs
@@ -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}