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

Default Conpherence Room Search to All Rooms

Summary: Just changes the default here. Main reasoning is if I'm searching for a room, show me all of them first. "My Rooms" is where I just came from.

Test Plan: Click Search in Conpherence, see All Rooms as default.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2 -2
+2 -2
src/applications/conpherence/query/ConpherenceThreadSearchEngine.php
··· 58 58 protected function getBuiltinQueryNames() { 59 59 $names = array(); 60 60 61 + $names['all'] = pht('All Rooms'); 62 + 61 63 if ($this->requireViewer()->isLoggedIn()) { 62 64 $names['participant'] = pht('Joined Rooms'); 63 65 } 64 - 65 - $names['all'] = pht('All Rooms'); 66 66 67 67 return $names; 68 68 }