Mark own comments as read after posting
This commit is contained in:
parent
0196f0e546
commit
d2a495f190
|
@ -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);
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue