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

Fix Paste transactions

Summary: We're using the wrong constants here, bad copy and paste job.

Test Plan: Archive a Paste, check transactions.

Reviewers:

Subscribers:

+2 -2
+2 -2
src/applications/paste/storage/PhabricatorPasteTransaction.php
··· 137 137 break; 138 138 case self::TYPE_STATUS: 139 139 switch ($new) { 140 - case self::STATUS_OPEN: 140 + case PhabricatorPaste::STATUS_ACTIVE: 141 141 return pht( 142 142 '%s activated %s.', 143 143 $this->renderHandleLink($author_phid), 144 144 $this->renderHandleLink($object_phid)); 145 - case self::STATUS_CLOSED: 145 + case PhabricatorPaste::STATUS_ARCHIVED: 146 146 return pht( 147 147 '%s archived %s.', 148 148 $this->renderHandleLink($author_phid),