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

Make Countdown Flaggable

Summary: Ref T8888. Cool man, like, more flags.

Test Plan: Flag it, Tag it, and Bag it.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8888

Differential Revision: https://secure.phabricator.com/D13653

+7 -4
+1
src/__phutil_library_map__.php
··· 5536 5536 'PhabricatorCountdown' => array( 5537 5537 'PhabricatorCountdownDAO', 5538 5538 'PhabricatorPolicyInterface', 5539 + 'PhabricatorFlaggableInterface', 5539 5540 'PhabricatorSpacesInterface', 5540 5541 ), 5541 5542 'PhabricatorCountdownApplication' => 'PhabricatorApplication',
+1
src/applications/countdown/controller/PhabricatorCountdownViewController.php
··· 70 70 $id = $countdown->getID(); 71 71 72 72 $view = id(new PhabricatorActionListView()) 73 + ->setObject($countdown) 73 74 ->setUser($viewer); 74 75 75 76 $can_edit = PhabricatorPolicyFilter::hasCapability(
+5 -4
src/applications/countdown/storage/PhabricatorCountdown.php
··· 1 1 <?php 2 2 3 - final class PhabricatorCountdown 4 - extends PhabricatorCountdownDAO 5 - implements PhabricatorPolicyInterface, 6 - PhabricatorSpacesInterface { 3 + final class PhabricatorCountdown extends PhabricatorCountdownDAO 4 + implements 5 + PhabricatorPolicyInterface, 6 + PhabricatorFlaggableInterface, 7 + PhabricatorSpacesInterface { 7 8 8 9 protected $title; 9 10 protected $authorPHID;