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

Clarify that 'order' is an optional parameter in Conduit API methods

Summary: Fixes T8603. For automatic 'order' parameters provided by infrastructure en route to T7715, clarify that they are optional (we will use the default builtin order for the underlying Query if an order is not provided).

Test Plan: Used web UI to see "optional" hint.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T8603

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

+1 -1
+1 -1
src/applications/conduit/method/ConduitAPIMethod.php
··· 30 30 31 31 $query = $this->newQueryObject(); 32 32 if ($query) { 33 - $types['order'] = 'order'; 33 + $types['order'] = 'optional order'; 34 34 $types += $this->getPagerParamTypes(); 35 35 } 36 36