Mark own comments as read after posting

This commit is contained in:
Vincent Petry 2016-02-05 16:30:37 +01:00
parent 0196f0e546
commit d2a495f190
2 changed files with 9 additions and 0 deletions

View File

@ -116,6 +116,11 @@ class CommentsPlugin extends ServerPlugin {
$data,
$request->getHeader('Content-Type')
);
// update read marker for the current user/poster to avoid
// having their own comments marked as unread
$node->setReadMarker(null);
$url = $request->getUrl() . '/' . urlencode($comment->getId());
$response->setHeader('Content-Location', $url);

View File

@ -92,6 +92,10 @@ class CommentsPlugin extends \Test\TestCase {
->method('getId')
->will($this->returnValue('42'));
$node->expects($this->once())
->method('setReadMarker')
->with(null);
$this->commentsManager->expects($this->once())
->method('create')
->with('users', 'alice', 'files', '42')