@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 28 lines 630 B view raw
1<?php 2 3final class PhabricatorDaemonLogEvent extends PhabricatorDaemonDAO { 4 5 protected $logID; 6 protected $logType; 7 protected $message; 8 protected $epoch; 9 10 protected function getConfiguration() { 11 return array( 12 self::CONFIG_TIMESTAMPS => false, 13 self::CONFIG_COLUMN_SCHEMA => array( 14 'logType' => 'text4', 15 'message' => 'text', 16 ), 17 self::CONFIG_KEY_SCHEMA => array( 18 'logID' => array( 19 'columns' => array('logID', 'epoch'), 20 ), 21 'key_epoch' => array( 22 'columns' => array('epoch'), 23 ), 24 ), 25 ) + parent::getConfiguration(); 26 } 27 28}