@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clear mock notifications when viewing mocks

Summary:
- When viewing a mock, clear unread flag on notifications about it.
- Show the "lcick to reload" version of the popup when you get a notification about the current mock.

Test Plan: Clicked a notification to clear it.

Reviewers: chad

Reviewed By: chad

CC: aran

Differential Revision: https://secure.phabricator.com/D5055

+5
+5
src/applications/pholio/controller/PholioMockViewController.php
··· 90 90 $add_comment, 91 91 ); 92 92 93 + PhabricatorFeedStoryNotification::updateObjectNotificationViews( 94 + $user, 95 + $mock->getPHID()); 96 + 93 97 return $this->buildApplicationPage( 94 98 $content, 95 99 array( 96 100 'title' => $title, 97 101 'device' => true, 102 + 'pageObjects' => array($mock->getPHID()), 98 103 )); 99 104 } 100 105