@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.

Remove an unused class

Summary: Self-explanatory.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

-10
-2
src/__phutil_library_map__.php
··· 1438 1438 'PhabricatorChatLogController' => 'applications/chatlog/controller/PhabricatorChatLogController.php', 1439 1439 'PhabricatorChatLogDAO' => 'applications/chatlog/storage/PhabricatorChatLogDAO.php', 1440 1440 'PhabricatorChatLogEvent' => 'applications/chatlog/storage/PhabricatorChatLogEvent.php', 1441 - 'PhabricatorChatLogEventType' => 'applications/chatlog/constants/PhabricatorChatLogEventType.php', 1442 1441 'PhabricatorChatLogQuery' => 'applications/chatlog/query/PhabricatorChatLogQuery.php', 1443 1442 'PhabricatorCommitBranchesField' => 'applications/repository/customfield/PhabricatorCommitBranchesField.php', 1444 1443 'PhabricatorCommitCustomField' => 'applications/repository/customfield/PhabricatorCommitCustomField.php', ··· 4591 4590 'PhabricatorChatLogDAO', 4592 4591 'PhabricatorPolicyInterface', 4593 4592 ), 4594 - 'PhabricatorChatLogEventType' => 'PhabricatorChatLogConstants', 4595 4593 'PhabricatorChatLogQuery' => 'PhabricatorCursorPagedPolicyAwareQuery', 4596 4594 'PhabricatorCommitBranchesField' => 'PhabricatorCommitCustomField', 4597 4595 'PhabricatorCommitCustomField' => 'PhabricatorCustomField',
-8
src/applications/chatlog/constants/PhabricatorChatLogEventType.php
··· 1 - <?php 2 - 3 - final class PhabricatorChatLogEventType 4 - extends PhabricatorChatLogConstants { 5 - 6 - const TYPE_MESSAGE = 'mesg'; 7 - 8 - }