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

Add method description to `conduit.query`

Summary: As suggested in T6950, add the method description to the response from `conduit.query`.

Test Plan: Called `echo '{}' | arc call-conduit conduit.query` and verified that the response contained the method description.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

+1
+1
src/applications/conduit/method/ConduitQueryConduitAPIMethod.php
··· 31 31 $names_to_params = array(); 32 32 foreach ($classes as $class) { 33 33 $names_to_params[$class->getAPIMethodName()] = array( 34 + 'description' => $class->getMethodDescription(), 34 35 'params' => $class->defineParamTypes(), 35 36 'return' => $class->defineReturnType(), 36 37 );