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

Allow Maniphest to be searched for mailing list subscribers

Summary: Lets you type any mailable into the "Subscribers" field.

Test Plan: Typed a list, got relevant tasks.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

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

+2 -2
+2 -2
src/applications/maniphest/query/ManiphestTaskSearchEngine.php
··· 22 22 23 23 $saved->setParameter( 24 24 'subscriberPHIDs', 25 - $this->readUsersFromRequest($request, 'subscribers')); 25 + $this->readPHIDsFromRequest($request, 'subscribers')); 26 26 27 27 $saved->setParameter('statuses', $request->getArr('statuses')); 28 28 $saved->setParameter('priorities', $request->getArr('priorities')); ··· 305 305 ->setValue($author_handles)) 306 306 ->appendChild( 307 307 id(new AphrontFormTokenizerControl()) 308 - ->setDatasource('/typeahead/common/accounts/') 308 + ->setDatasource('/typeahead/common/mailable/') 309 309 ->setName('subscribers') 310 310 ->setLabel(pht('Subscribers')) 311 311 ->setValue($subscriber_handles))