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

Fix issue where 'changeType' is not marshalled across Conduit

Summary: This leads to the "Change" column always showing "Unknown".

Test Plan: "Change" column now shows, e.g., "Contents Modified".

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

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

+2
+2
src/applications/diffusion/data/DiffusionPathChange.php
··· 168 168 'commit' => $commit_dict, 169 169 'commitData' => $commit_data_dict, 170 170 'fileType' => $this->getFileType(), 171 + 'changeType' => $this->getChangeType(), 171 172 'targetPath' => $this->getTargetPath(), 172 173 'targetCommitIdentifier' => $this->getTargetCommitIdentifier(), 173 174 'awayPaths' => $this->getAwayPaths()); ··· 186 187 ->setCommit($commit) 187 188 ->setCommitData($commit_data) 188 189 ->setFileType($dict['fileType']) 190 + ->setChangeType($dict['changeType']) 189 191 ->setTargetPath($dict['targetPath']) 190 192 ->setTargetCommitIdentifier($dict['targetCommitIdentifier']) 191 193 ->setAwayPaths($dict['awayPaths']);