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

Use Notification Status in Conpherence

Summary: Adds a connection status message in Conpherence

Test Plan: Check status

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+10 -1
+1 -1
src/applications/conpherence/controller/ConpherenceViewController.php
··· 166 166 $this->initBehavior('conpherence-pontificate'); 167 167 if ($participating) { 168 168 $action = ConpherenceUpdateActions::MESSAGE; 169 - $status = pht('I\'ll find something to put here.'); 169 + $status = new PhabricatorNotificationStatusView(); 170 170 } else { 171 171 $action = ConpherenceUpdateActions::JOIN_ROOM; 172 172 $status = pht('Sending a message will also join the room.');
+9
src/applications/notification/view/PhabricatorNotificationStatusView.php
··· 23 23 ); 24 24 } 25 25 26 + protected function getTagContent() { 27 + $have = PhabricatorEnv::getEnvConfig('notification.servers'); 28 + if ($have) { 29 + return pht('Connecting...'); 30 + } else { 31 + return pht('Notification server not enabled'); 32 + } 33 + } 34 + 26 35 }