diff --git a/src/applications/conduit/method/path/getowners/ConduitAPI_path_getowners_Method.php b/src/applications/conduit/method/path/getowners/ConduitAPI_path_getowners_Method.php index f507ccc474..be28ce67b9 100644 --- a/src/applications/conduit/method/path/getowners/ConduitAPI_path_getowners_Method.php +++ b/src/applications/conduit/method/path/getowners/ConduitAPI_path_getowners_Method.php @@ -34,6 +34,7 @@ class ConduitAPI_path_getowners_Method extends ConduitAPIMethod { "array(". "array(". "'phid' => phid, ". + "'name' => string, ". "'primaryOwner' => phid, ". "'owners' => array(phid)))"; } @@ -67,6 +68,7 @@ class ConduitAPI_path_getowners_Method extends ConduitAPIMethod { $result[] = array( 'phid' => $package->getPHID(), + 'name' => $package->getName(), 'primaryOwner' => $package->getPrimaryOwnerPHID(), 'owners' => array_values(mpull($p_owners, 'getUserPHID')), );