1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-24 06:20:56 +01:00

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
This commit is contained in:
epriestley 2015-06-18 13:05:44 -07:00
parent 2eb73619d1
commit 90078fe06e

View file

@ -30,7 +30,7 @@ abstract class ConduitAPIMethod
$query = $this->newQueryObject();
if ($query) {
$types['order'] = 'order';
$types['order'] = 'optional order';
$types += $this->getPagerParamTypes();
}