@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 "phriction.history" in favor of "phriction.content.search"

Summary: Depends on D19097. Ref T13077. Freeze the older method now that the newer one is available.

Test Plan: Viewed the older method's page and saw it frozen; called it to make sure I didn't break it by accident.

Maniphest Tasks: T13077

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

+10
+10
src/applications/phriction/conduit/PhrictionHistoryConduitAPIMethod.php
··· 10 10 return pht('Retrieve history 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.content.search" instead.'); 21 + } 22 + 13 23 protected function defineParamTypes() { 14 24 return array( 15 25 'slug' => 'required string',