@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: This class is no longer required after D10792.

Test Plan: `grep`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

-11
-2
src/__phutil_library_map__.php
··· 1721 1721 'PhabricatorFeedStoryPublisher' => 'applications/feed/PhabricatorFeedStoryPublisher.php', 1722 1722 'PhabricatorFeedStoryReference' => 'applications/feed/storage/PhabricatorFeedStoryReference.php', 1723 1723 'PhabricatorFeedStoryStatus' => 'applications/feed/story/PhabricatorFeedStoryStatus.php', 1724 - 'PhabricatorFeedStoryTypeConstants' => 'applications/feed/constants/PhabricatorFeedStoryTypeConstants.php', 1725 1724 'PhabricatorFile' => 'applications/files/storage/PhabricatorFile.php', 1726 1725 'PhabricatorFileBundleLoader' => 'applications/files/query/PhabricatorFileBundleLoader.php', 1727 1726 'PhabricatorFileCommentController' => 'applications/files/controller/PhabricatorFileCommentController.php', ··· 4898 4897 'PhabricatorFeedStoryPhriction' => 'PhabricatorFeedStory', 4899 4898 'PhabricatorFeedStoryReference' => 'PhabricatorFeedDAO', 4900 4899 'PhabricatorFeedStoryStatus' => 'PhabricatorFeedStory', 4901 - 'PhabricatorFeedStoryTypeConstants' => 'PhabricatorFeedConstants', 4902 4900 'PhabricatorFile' => array( 4903 4901 'PhabricatorFileDAO', 4904 4902 'PhabricatorApplicationTransactionInterface',
-9
src/applications/feed/constants/PhabricatorFeedStoryTypeConstants.php
··· 1 - <?php 2 - 3 - final class PhabricatorFeedStoryTypeConstants 4 - extends PhabricatorFeedConstants { 5 - 6 - const STORY_PHRICTION = 'PhabricatorFeedStoryPhriction'; 7 - const STORY_COMMIT = 'PhabricatorFeedStoryCommit'; 8 - 9 - }