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

Don't allow Herald Diff rules to "Call Webhooks"

Summary: Like "Commit Hook" rules, these also fire oddly and don't have an object PHID or a list of transactions.

Test Plan: Verified that "Call Webhooks" was no longer available from Diff rules, but still available from other rule types.

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

+4
+4
src/applications/differential/herald/HeraldDifferentialDiffAdapter.php
··· 57 57 return pht('New Diff'); 58 58 } 59 59 60 + public function supportsWebhooks() { 61 + return false; 62 + } 63 + 60 64 }