@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
at upstream/main 17 lines 551 B view raw
1<?php 2 3final class PhabricatorApplicationApplicationTransactionQuery 4 extends PhabricatorApplicationTransactionQuery { 5 6 public function getTemplateApplicationTransaction() { 7 return new PhabricatorApplicationApplicationTransaction(); 8 } 9 10 // NOTE: Although this belongs to the "Applications" application, trying 11 // to filter its results just leaves us recursing indefinitely. Users 12 // always have access to applications regardless of other policy settings 13 // anyway. 14 public function getQueryApplicationClass() { 15 return null; 16 } 17}