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

Remove "unstable" status and T2784-specific warning message

Summary: Ref T2784. These are lookin' pretty stable. Subclasses like `DiffusionGetLintMessagesConduitAPIMethod` have their warnings about unstable methods, so just remove this warning in the base class.

Test Plan: Loaded `/conduit`, observed lack of unstable warnings. Only unstable methods are now `diffusion.getlintmessages`, `diffusion.looksoon`, and `diffusion.updatecoverage`.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T2784

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

-11
-11
src/applications/diffusion/conduit/DiffusionQueryConduitAPIMethod.php
··· 7 7 return true; 8 8 } 9 9 10 - public function getMethodStatus() { 11 - return self::METHOD_STATUS_UNSTABLE; 12 - } 13 - 14 - public function getMethodStatusDescription() { 15 - return pht( 16 - 'See T2784 - migrating Diffusion working copy calls to conduit methods. '. 17 - 'Until that task is completed (and possibly after) these methods are '. 18 - 'unstable.'); 19 - } 20 - 21 10 private $diffusionRequest; 22 11 private $repository; 23 12