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

Return the changeset ID as part of the changeset dict

Summary:
getDiffDict method returns the JSON for the changesets in a diff
The JSON descriping a changeset didn't containt the changeset ID
in some scenarios, knowing the changeset ID is really useful for the
clients.(i.e. when you want to open a standalone view of the changeset,
you need to know its ID)

Test Plan: existing

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

authored by

Mohamed Fawzy and committed by
epriestley
89747c0e bda2c578

+1
+1
src/applications/differential/storage/DifferentialDiff.php
··· 219 219 ); 220 220 } 221 221 $change = array( 222 + 'id' => $changeset->getID(), 222 223 'metadata' => $changeset->getMetadata(), 223 224 'oldPath' => $changeset->getOldFile(), 224 225 'currentPath' => $changeset->getFilename(),