@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 `user` parameter to differential.createrevision

Summary: arc incorrectly passes a "user" parameter to differential.createrevision (long ago, we respected it, I think). After D4191 this fatals. Provide a stub call until the next version bump.

Test Plan: inspection

Reviewers: vrana, btrahan

Reviewed By: btrahan

CC: aran

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

+3
+3
src/applications/conduit/method/differential/ConduitAPI_differential_createrevision_Method.php
··· 12 12 13 13 public function defineParamTypes() { 14 14 return array( 15 + // TODO: Arcanist passes this; prevent fatals after D4191 until Conduit 16 + // version 7 or newer. 17 + 'user' => 'ignored', 15 18 'diffid' => 'required diffid', 16 19 'fields' => 'required dict', 17 20 );