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

Deprecate ancient "slowvote.info" API method

Summary: Depends on D20686. Fixes T13350. Now that "slowvote.poll.search" exists, deprecate this old method.

Test Plan: Reviewed method description in Condiut API console in the web UI.

Maniphest Tasks: T13350

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

+8
+8
src/applications/slowvote/conduit/SlowvoteInfoConduitAPIMethod.php
··· 6 6 return 'slowvote.info'; 7 7 } 8 8 9 + public function getMethodStatus() { 10 + return self::METHOD_STATUS_DEPRECATED; 11 + } 12 + 13 + public function getMethodStatusDescription() { 14 + return pht('Replaced by "slowvote.poll.search".'); 15 + } 16 + 9 17 public function getMethodDescription() { 10 18 return pht('Retrieve an array of information about a poll.'); 11 19 }