diff options
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index bea56ea..2d72629 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -222,6 +222,23 @@ namespace OpenSim.Framework.UserManagement | |||
222 | 222 | ||
223 | } | 223 | } |
224 | 224 | ||
225 | public void StoreWebLoginKey(LLUUID agentID, LLUUID webLoginKey) | ||
226 | { | ||
227 | |||
228 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | ||
229 | { | ||
230 | try | ||
231 | { | ||
232 | plugin.Value.StoreWebLoginKey(agentID, webLoginKey); | ||
233 | } | ||
234 | catch (Exception e) | ||
235 | { | ||
236 | MainLog.Instance.Verbose("USERSTORAGE", | ||
237 | "Unable to Store WebLoginKey via " + plugin.Key + "(" + e.ToString() + ")"); | ||
238 | } | ||
239 | } | ||
240 | } | ||
241 | |||
225 | public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms) | 242 | public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms) |
226 | { | 243 | { |
227 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) | 244 | foreach (KeyValuePair<string, IUserData> plugin in _plugins) |