@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 678 B view raw
1<?php 2 3interface PhabricatorDraftInterface { 4 5 public function newDraftEngine(); 6 7 public function getHasDraft(PhabricatorUser $viewer); 8 public function attachHasDraft(PhabricatorUser $viewer, $has_draft); 9 10} 11 12/* -( PhabricatorDraftInterface )------------------------------------------ */ 13/* 14 15 public function newDraftEngine() { 16 return new <...>DraftEngine(); 17 } 18 19 public function getHasDraft(PhabricatorUser $viewer) { 20 return $this->assertAttachedKey($this->drafts, $viewer->getCacheFragment()); 21 } 22 23 public function attachHasDraft(PhabricatorUser $viewer, $has_draft) { 24 $this->drafts[$viewer->getCacheFragment()] = $has_draft; 25 return $this; 26 } 27 28*/