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

Show "Frozen" status of calls in Conduit Logs (instead of "Unknown")

Summary:
"Frozen" got introduced in rPaa6e788f but not all the code also knows about it.

Closes T16221

Test Plan:
# Execute some frozen Conduit API methods
# Go to http://phorge.localhost/conduit/log/
# Log at the icon in front of these entries which is not anymore a question mark with an "Unknown" tooltip

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16221

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

+9
+9
src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php
··· 228 228 'tip' => pht('Deprecated'), 229 229 )); 230 230 break; 231 + case ConduitAPIMethod::METHOD_STATUS_FROZEN: 232 + $status = id(new PHUIIconView()) 233 + ->setIcon('fa-exclamation-triangle grey') 234 + ->addSigil('has-tooltip') 235 + ->setMetadata( 236 + array( 237 + 'tip' => pht('Frozen'), 238 + )); 239 + break; 231 240 default: 232 241 $status = id(new PHUIIconView()) 233 242 ->setIcon('fa-question-circle')