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

When a repository is importing, show it on the list view

Summary: Fixes T9191. This is pretty fluff but doesn't hurt anything, I guess.

Test Plan: Viewed repository list, saw an importing repository get a little icon.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9191

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

+2
+2
src/applications/repository/query/PhabricatorRepositorySearchEngine.php
··· 204 204 if (!$repository->isTracked()) { 205 205 $item->setDisabled(true); 206 206 $item->addIcon('disable-grey', pht('Inactive')); 207 + } else if ($repository->isImporting()) { 208 + $item->addIcon('fa-clock-o violet', pht('Importing...')); 207 209 } 208 210 209 211 $list->addItem($item);