@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 "Land to..." button call diffusion.looksoon

Summary:
add looksoon call after every attempt at landing.

This includes failed attempts, to elevate "not a fast-forward" issues, although there are probably smarter things to be done about that.

Test Plan: Land, look at logs.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

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

authored by

Aviv Eyal and committed by
epriestley
78c2d585 5c9f0de9

+9
+9
src/applications/differential/controller/DifferentialRevisionLandController.php
··· 141 141 } 142 142 143 143 $lock->unlock(); 144 + 145 + $looksoon = new ConduitCall( 146 + 'diffusion.looksoon', 147 + array( 148 + 'callsigns' => array($repository->getCallsign()) 149 + )); 150 + $looksoon->setUser($request->getUser()); 151 + $looksoon->execute(); 152 + 144 153 return $response; 145 154 } 146 155