Can delete the Offline Messages sent to/from a user.

This is useful if the user is deleted.
This commit is contained in:
Oren Hurvitz
2013-10-29 16:38:03 +02:00
committed by Justin Clark-Casey (justincc)
parent 46c2791fe2
commit 2d9d6fe922
5 changed files with 44 additions and 0 deletions

View File

@@ -261,6 +261,11 @@ namespace OpenSim.OfflineIM
return m_OfflineIMService.StoreMessage(im, out reason);
}
public void DeleteMessages(UUID userID)
{
m_OfflineIMService.DeleteMessages(userID);
}
#endregion
}
}