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

When a user enables/disables DarkConsole, forget their console UI visibility setting

Summary: Ref T4103. This primarily makes sure the console gets turned on when you enable it so you aren't like "where's the console???"

Test Plan: Enabled console, saw console.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T4103

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

+12
+12
src/applications/settings/setting/PhabricatorDarkConsoleSetting.php
··· 42 42 ); 43 43 } 44 44 45 + public function expandSettingTransaction($object, $xaction) { 46 + // If the user has hidden the DarkConsole UI, forget their setting when 47 + // they enable or disable it. 48 + return array( 49 + $xaction, 50 + $this->newSettingTransaction( 51 + $object, 52 + PhabricatorDarkConsoleVisibleSetting::SETTINGKEY, 53 + 1), 54 + ); 55 + } 56 + 45 57 46 58 }