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

Add a missing transaction query class for panel transactions

Summary: Ref T10054. The daemons look for this but currently can't find it.

Test Plan: Ran daemons, clean exit on profile menu edits instead of permanent failure.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10054

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

+12
+2
src/__phutil_library_map__.php
··· 2841 2841 'PhabricatorProfilePanelConfiguration' => 'applications/search/storage/PhabricatorProfilePanelConfiguration.php', 2842 2842 'PhabricatorProfilePanelConfigurationQuery' => 'applications/search/query/PhabricatorProfilePanelConfigurationQuery.php', 2843 2843 'PhabricatorProfilePanelConfigurationTransaction' => 'applications/search/storage/PhabricatorProfilePanelConfigurationTransaction.php', 2844 + 'PhabricatorProfilePanelConfigurationTransactionQuery' => 'applications/search/query/PhabricatorProfilePanelConfigurationTransactionQuery.php', 2844 2845 'PhabricatorProfilePanelEditEngine' => 'applications/search/editor/PhabricatorProfilePanelEditEngine.php', 2845 2846 'PhabricatorProfilePanelEditor' => 'applications/search/editor/PhabricatorProfilePanelEditor.php', 2846 2847 'PhabricatorProfilePanelEngine' => 'applications/search/engine/PhabricatorProfilePanelEngine.php', ··· 7216 7217 ), 7217 7218 'PhabricatorProfilePanelConfigurationQuery' => 'PhabricatorCursorPagedPolicyAwareQuery', 7218 7219 'PhabricatorProfilePanelConfigurationTransaction' => 'PhabricatorApplicationTransaction', 7220 + 'PhabricatorProfilePanelConfigurationTransactionQuery' => 'PhabricatorApplicationTransactionQuery', 7219 7221 'PhabricatorProfilePanelEditEngine' => 'PhabricatorEditEngine', 7220 7222 'PhabricatorProfilePanelEditor' => 'PhabricatorApplicationTransactionEditor', 7221 7223 'PhabricatorProfilePanelEngine' => 'Phobject',
+10
src/applications/search/query/PhabricatorProfilePanelConfigurationTransactionQuery.php
··· 1 + <?php 2 + 3 + final class PhabricatorProfilePanelConfigurationTransactionQuery 4 + extends PhabricatorApplicationTransactionQuery { 5 + 6 + public function getTemplateApplicationTransaction() { 7 + return new PhabricatorProfilePanelConfigurationTransaction(); 8 + } 9 + 10 + }