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
···587587588588 $diff->setRevisionID($object->getID());
589589 $diff->save();
590590+591591+ // Update Harbormaster to set the containerPHID correctly for any
592592+ // existing buildables. We may otherwise have buildables stuck with
593593+ // the old (`null`) container.
594594+595595+ // TODO: This is a bit iffy, maybe we can find a cleaner approach?
596596+ $table = new HarbormasterBuildable();
597597+ $conn_w = $table->establishConnection('w');
598598+ queryfx(
599599+ $conn_w,
600600+ 'UPDATE %T SET containerPHID = %s WHERE buildablePHID = %s',
601601+ $table->getTableName(),
602602+ $object->getPHID(),
603603+ $diff->getPHID());
604604+590605 return;
591606 }
592607