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

Update function name to follow naming convention.

See: <http://github.com/facebook/phabricator/pull/575>

Reviewed by: epriestley

authored by

austinkelleher and committed by
epriestley
2e5065fe ce1dbbec

+3 -3
+1 -1
src/applications/herald/adapter/HeraldAdapter.php
··· 1041 1041 break; 1042 1042 case HeraldPreCommitRefAdapter::FIELD_REF_CHANGE: 1043 1043 $change_map = 1044 - PhabricatorRepositoryPushLog::getHeraldChangeflagConditionOptions(); 1044 + PhabricatorRepositoryPushLog::getHeraldChangeFlagConditionOptions(); 1045 1045 foreach ($value as $index => $val) { 1046 1046 $name = idx($change_map, $val); 1047 1047 if ($name) {
+1 -1
src/applications/herald/controller/HeraldRuleController.php
··· 464 464 } 465 465 466 466 $changeflag_options = 467 - PhabricatorRepositoryPushLog::getHeraldChangeflagConditionOptions(); 467 + PhabricatorRepositoryPushLog::getHeraldChangeFlagConditionOptions(); 468 468 Javelin::initBehavior( 469 469 'herald-rule-editor', 470 470 array(
+1 -1
src/applications/repository/storage/PhabricatorRepositoryPushLog.php
··· 52 52 ->setPusherPHID($viewer->getPHID()); 53 53 } 54 54 55 - public static function getHeraldChangeflagConditionOptions() { 55 + public static function getHeraldChangeFlagConditionOptions() { 56 56 return array( 57 57 PhabricatorRepositoryPushLog::CHANGEFLAG_ADD => 58 58 pht('change creates ref'),