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
···11+<?php
22+33+final class PhameBlogEditConduitAPIMethod
44+ extends PhabricatorEditEngineAPIMethod {
55+66+ public function getAPIMethodName() {
77+ return 'phame.blog.edit';
88+ }
99+1010+ public function newEditEngine() {
1111+ return new PhameBlogEditEngine();
1212+ }
1313+1414+ public function getMethodSummary() {
1515+ return pht('Create or edit blogs in Phame.');
1616+ }
1717+1818+}