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

Freeze the "phriction.info" Conduit API method

Summary: Ref T13077. Freeze "phriction.info" in favor of the more modern "phriction.document.search".

Test Plan: Reviewed older method in web UI, saw frozen markers.

Maniphest Tasks: T13077

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

+10
+10
src/applications/phriction/conduit/PhrictionInfoConduitAPIMethod.php
··· 10 10 return pht('Retrieve information about a Phriction document.'); 11 11 } 12 12 13 + public function getMethodStatus() { 14 + return self::METHOD_STATUS_FROZEN; 15 + } 16 + 17 + public function getMethodStatusDescription() { 18 + return pht( 19 + 'This method is frozen and will eventually be deprecated. New code '. 20 + 'should use "phriction.document.search" instead.'); 21 + } 22 + 13 23 protected function defineParamTypes() { 14 24 return array( 15 25 'slug' => 'required string',