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

Allow system agents in commit message object lists

Summary:
When system agent adds a comment then he is added to CC.
When I amend and update then I get message "Commit message references nonexistent ..."

Test Plan: Update revision with system agent in CC.

Reviewers: epriestley

Reviewed By: epriestley

CC: michalburger1, aran

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

vrana 84398fc5 6a0b25c1

+1 -2
+1 -2
src/applications/differential/field/specification/base/DifferentialFieldSpecification.php
··· 658 658 $object_map = array(); 659 659 660 660 $users = id(new PhabricatorUser())->loadAllWhere( 661 - '((username IN (%Ls)) OR (email IN (%Ls))) 662 - AND isSystemAgent = 0', 661 + '(username IN (%Ls)) OR (email IN (%Ls))', 663 662 $value, 664 663 $value); 665 664