mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
A few more inches... Old friends things removed. Less references to UserProfileService.
This commit is contained in:
@@ -3979,35 +3979,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
objectCapacity = objects;
|
||||
}
|
||||
|
||||
public List<FriendListItem> GetFriendList(string id)
|
||||
{
|
||||
UUID avatarID;
|
||||
if (!UUID.TryParse(id, out avatarID))
|
||||
return new List<FriendListItem>();
|
||||
|
||||
return CommsManager.GetUserFriendList(avatarID);
|
||||
}
|
||||
|
||||
public Dictionary<UUID, FriendRegionInfo> GetFriendRegionInfos(List<UUID> uuids)
|
||||
{
|
||||
return CommsManager.GetFriendRegionInfos(uuids);
|
||||
}
|
||||
|
||||
public virtual void StoreAddFriendship(UUID ownerID, UUID friendID, uint perms)
|
||||
{
|
||||
m_sceneGridService.AddNewUserFriend(ownerID, friendID, perms);
|
||||
}
|
||||
|
||||
public virtual void StoreUpdateFriendship(UUID ownerID, UUID friendID, uint perms)
|
||||
{
|
||||
m_sceneGridService.UpdateUserFriendPerms(ownerID, friendID, perms);
|
||||
}
|
||||
|
||||
public virtual void StoreRemoveFriendship(UUID ownerID, UUID ExfriendID)
|
||||
{
|
||||
m_sceneGridService.RemoveUserFriend(ownerID, ExfriendID);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public void HandleObjectPermissionsUpdate(IClientAPI controller, UUID agentID, UUID sessionID, byte field, uint localId, uint mask, byte set)
|
||||
|
||||
@@ -1455,25 +1455,6 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
m_commsProvider.LogOffUser(userid, regionid, regionhandle, posx, posy, posz);
|
||||
}
|
||||
|
||||
public void AddNewUserFriend(UUID friendlistowner, UUID friend, uint perms)
|
||||
{
|
||||
m_commsProvider.AddNewUserFriend(friendlistowner, friend, perms);
|
||||
}
|
||||
|
||||
public void UpdateUserFriendPerms(UUID friendlistowner, UUID friend, uint perms)
|
||||
{
|
||||
m_commsProvider.UpdateUserFriendPerms(friendlistowner, friend, perms);
|
||||
}
|
||||
|
||||
public void RemoveUserFriend(UUID friendlistowner, UUID friend)
|
||||
{
|
||||
m_commsProvider.RemoveUserFriend(friendlistowner, friend);
|
||||
}
|
||||
|
||||
public List<FriendListItem> GetUserFriendList(UUID friendlistowner)
|
||||
{
|
||||
return m_commsProvider.GetUserFriendList(friendlistowner);
|
||||
}
|
||||
|
||||
public List<AvatarPickerAvatar> GenerateAgentPickerRequestResponse(UUID queryID, string query)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user