@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 upstream/main 28 lines 670 B view raw
1<?php 2 3final class PhabricatorSystemDestructionLog extends PhabricatorSystemDAO { 4 5 protected $objectClass; 6 protected $rootLogID; 7 protected $objectPHID; 8 protected $objectMonogram; 9 protected $epoch; 10 11 protected function getConfiguration() { 12 return array( 13 self::CONFIG_TIMESTAMPS => false, 14 self::CONFIG_COLUMN_SCHEMA => array( 15 'objectClass' => 'text128', 16 'rootLogID' => 'id?', 17 'objectPHID' => 'phid?', 18 'objectMonogram' => 'text64?', 19 ), 20 self::CONFIG_KEY_SCHEMA => array( 21 'key_epoch' => array( 22 'columns' => array('epoch'), 23 ), 24 ), 25 ) + parent::getConfiguration(); 26 } 27 28}