Select the types of activity you want to include in your feed.
@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
···191191 }
192192193193 private function loadEditEngineConfiguration($key) {
194194+ $viewer = $this->getViewer();
194195 if ($key === null) {
195196 $key = self::EDITENGINECONFIG_DEFAULT;
197197+198198+ // TODO: At least for now, we need to load the default configuration
199199+ // in some cases (editing, comment actions) even if the viewer can not
200200+ // otherwise see it. This should be cleaned up eventually, but we can
201201+ // safely use the omnipotent user for now without policy violations.
202202+ $viewer = PhabricatorUser::getOmnipotentUser();
196203 }
197204198205 $config = id(new PhabricatorEditEngineConfigurationQuery())
199199- ->setViewer($this->getViewer())
206206+ ->setViewer($viewer)
200207 ->withEngineKeys(array($this->getEngineKey()))
201208 ->withIdentifiers(array($key))
202209 ->executeOne();