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

Filter out archived projects from ProjectProfileView

Summary: This just hides them, should still show on "View All".

Test Plan: Hide a Milestone, no longer see it on home. Click "View All", see all Milestones.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+8
+8
src/applications/project/controller/PhabricatorProjectProfileController.php
··· 201 201 ->withParentProjectPHIDs(array($project->getPHID())) 202 202 ->needImages(true) 203 203 ->withIsMilestone(true) 204 + ->withStatuses( 205 + array( 206 + PhabricatorProjectStatus::STATUS_ACTIVE, 207 + )) 204 208 ->setOrder('newest') 205 209 ->execute(); 206 210 if (!$milestones) { ··· 244 248 ->setViewer($viewer) 245 249 ->withParentProjectPHIDs(array($project->getPHID())) 246 250 ->needImages(true) 251 + ->withStatuses( 252 + array( 253 + PhabricatorProjectStatus::STATUS_ACTIVE, 254 + )) 247 255 ->withIsMilestone(false) 248 256 ->setLimit($limit) 249 257 ->execute();