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

Add points to workboard cards

Summary: Fixes T10328.

Test Plan: {F1104609}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10328

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

+11
+11
src/applications/project/view/ProjectBoardTaskCard.php
··· 95 95 $card->setCoverImage($cover_file->getBestURI()); 96 96 } 97 97 98 + if (ManiphestTaskPoints::getIsEnabled()) { 99 + $points = $task->getPoints(); 100 + if ($points !== null) { 101 + $points_tag = id(new PHUITagView()) 102 + ->setType(PHUITagView::TYPE_SHADE) 103 + ->setShade(PHUITagView::COLOR_BLUE) 104 + ->setName($points); 105 + $card->addAttribute($points_tag); 106 + } 107 + } 108 + 98 109 if ($task->isClosed()) { 99 110 $icon = ManiphestTaskStatus::getStatusIcon($task->getStatus()); 100 111 $icon = id(new PHUIIconView())