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

Support repository query by short name in Diffusion

Summary: See PHI432. Ref T13099. Short names never made it to the UI/API but seem stable now, so support them.

Test Plan: {F5465173}

Maniphest Tasks: T13099

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

+7
+7
src/applications/repository/query/PhabricatorRepositorySearchEngine.php
··· 24 24 id(new PhabricatorSearchStringListField()) 25 25 ->setLabel(pht('Callsigns')) 26 26 ->setKey('callsigns'), 27 + id(new PhabricatorSearchStringListField()) 28 + ->setLabel(pht('Short Names')) 29 + ->setKey('shortNames'), 27 30 id(new PhabricatorSearchSelectField()) 28 31 ->setLabel(pht('Status')) 29 32 ->setKey('status') ··· 49 52 50 53 if ($map['callsigns']) { 51 54 $query->withCallsigns($map['callsigns']); 55 + } 56 + 57 + if ($map['shortNames']) { 58 + $query->withSlugs($map['shortNames']); 52 59 } 53 60 54 61 if ($map['status']) {