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

Make "bin/audit synchronize" actually save changes

Summary: Ref T10978. Although this script prints out some very good changes, it does not currently persist them to the database.

Test Plan: Ran `bin/audit synchronize`, saw the change appear both on the CLI and in the database.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10978

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

+3 -1
+3 -1
src/applications/audit/management/PhabricatorAuditSynchronizeManagementWorkflow.php
··· 44 44 echo tsprintf( 45 45 "%s\n", 46 46 pht( 47 - 'Updated "%s": "%s" -> "%s".', 47 + 'Updating "%s": "%s" -> "%s".', 48 48 $commit->getDisplayName(), 49 49 PhabricatorAuditCommitStatusConstants::getStatusName( 50 50 $old_status), 51 51 PhabricatorAuditCommitStatusConstants::getStatusName( 52 52 $new_status))); 53 + 54 + $commit->save(); 53 55 } 54 56 } 55 57 }