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

Minor, fix a Conduit issue with the bot?

Test Plan: do it live

+2
+2
src/infrastructure/daemon/bot/PhabricatorBot.php
··· 59 59 // domain without the "/api/" part. 60 60 $conduit_uri = new PhutilURI($conduit_uri); 61 61 $conduit_uri->setPath('/api/'); 62 + $conduit_host = $conduit_uri->getDomain(); 62 63 $conduit_uri = (string)$conduit_uri; 63 64 64 65 $conduit = new ConduitClient($conduit_uri); ··· 68 69 'client' => 'PhabricatorBot', 69 70 'clientVersion' => '1.0', 70 71 'clientDescription' => php_uname('n').':'.$nick, 72 + 'host' => $conduit_host, 71 73 'user' => $conduit_user, 72 74 'certificate' => $conduit_cert, 73 75 ));