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

Unhide "Modified After" and "Modified Before" search fields for Differential

Summary:
These search fields were added in 353155a2034e, but set to hidden for
the UI. This patch just enables them in the UI.

Test Plan:
- Go to https://phorge.localhost/differential/query/advanced/ and observe that
the options exist
- set something like "1 years ago" and see consistent results
- save the query, it still works, no regressions

Reviewers: #blessed_committers, O1 Blessed Committers, valerio.bozzolan

Reviewed By: #blessed_committers, O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26688

-2
-2
src/applications/differential/query/DifferentialRevisionSearchEngine.php
··· 113 113 id(new PhabricatorSearchDateField()) 114 114 ->setLabel(pht('Modified After')) 115 115 ->setKey('modifiedStart') 116 - ->setIsHidden(true) 117 116 ->setDescription( 118 117 pht('Find revisions modified at or after a particular time.')), 119 118 id(new PhabricatorSearchDateField()) 120 119 ->setLabel(pht('Modified Before')) 121 120 ->setKey('modifiedEnd') 122 - ->setIsHidden(true) 123 121 ->setDescription( 124 122 pht('Find revisions modified at or before a particular time.')), 125 123 id(new PhabricatorSearchStringListField())