@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 return type to `conduit.query`

Summary: Fixes T6950. Adds the return type of Conduit API methods to the `conduit.query` call.

Test Plan: Called `echo '{}' | arc call-conduit conduit.query` and verified that the return types were present in the response.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T6950

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

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