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

at recaptime-dev/main 29 lines 756 B view raw
1<?php 2 3final class PhabricatorFeedStoryReference extends PhabricatorFeedDAO { 4 5 protected $objectPHID; 6 protected $chronologicalKey; 7 8 protected function getConfiguration() { 9 return array( 10 self::CONFIG_IDS => self::IDS_MANUAL, 11 self::CONFIG_TIMESTAMPS => false, 12 self::CONFIG_COLUMN_SCHEMA => array( 13 'chronologicalKey' => 'uint64', 14 'id' => null, 15 ), 16 self::CONFIG_KEY_SCHEMA => array( 17 'PRIMARY' => null, 18 'objectPHID' => array( 19 'columns' => array('objectPHID', 'chronologicalKey'), 20 'unique' => true, 21 ), 22 'chronologicalKey' => array( 23 'columns' => array('chronologicalKey'), 24 ), 25 ), 26 ) + parent::getConfiguration(); 27 } 28 29}