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

Mark ConpherenceCreate and Update conduit calls as frozen

Summary: T12656, mark these methods as frozen and use conpherence.edit instead.

Test Plan: Visit conduit, check status is displayed.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+20
+10
src/applications/conpherence/conduit/ConpherenceCreateThreadConduitAPIMethod.php
··· 11 11 return pht('Create a new conpherence thread.'); 12 12 } 13 13 14 + public function getMethodStatus() { 15 + return self::METHOD_STATUS_FROZEN; 16 + } 17 + 18 + public function getMethodStatusDescription() { 19 + return pht( 20 + 'This method is frozen and will eventually be deprecated. New code '. 21 + 'should use "conpherence.edit" instead.'); 22 + } 23 + 14 24 protected function defineParamTypes() { 15 25 return array( 16 26 'title' => 'required string',
+10
src/applications/conpherence/conduit/ConpherenceUpdateThreadConduitAPIMethod.php
··· 11 11 return pht('Update an existing conpherence room.'); 12 12 } 13 13 14 + public function getMethodStatus() { 15 + return self::METHOD_STATUS_FROZEN; 16 + } 17 + 18 + public function getMethodStatusDescription() { 19 + return pht( 20 + 'This method is frozen and will eventually be deprecated. New code '. 21 + 'should use "conpherence.edit" instead.'); 22 + } 23 + 14 24 protected function defineParamTypes() { 15 25 return array( 16 26 'id' => 'optional int',