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

Expose subscribers transaction data via Conduit "transaction.search"

Summary:
Depends on D20507. See PHI1232. Previously, see T13255 and D20209.

Since nothing seems to have exploded after "projects" was exposed, give "subscribers" the same treatment.

Test Plan: Added, removed, and modified subscribers. Queried transactions with "transaction.search", saw sensible "type" and data.

Reviewers: amckinley

Reviewed By: amckinley

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

+4
+4
src/applications/transactions/conduit/TransactionSearchConduitAPIMethod.php
··· 253 253 break; 254 254 } 255 255 break; 256 + case PhabricatorTransactions::TYPE_SUBSCRIBERS: 257 + $type = 'subscribers'; 258 + $fields = $this->newEdgeTransactionFields($xaction); 259 + break; 256 260 } 257 261 } 258 262