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

Fix Create New Repository link on Repositories

Summary: See <https://github.com/facebook/phabricator/pull/510>.

After the repository rework, the Create New Repository link in Repositories goes straight to creating a phabricator hosted repo(diffusion/create), rather than the chooser create/import (diffusion/new)

I updated it to point to diffusion/new the same as the New Repository link in Diffusion.

As a side note, the Repositories page could probably use the Crumbs treatment.

Reviewed by: epriestley

authored by

Chris Colborne and committed by
epriestley
ac09a1a2 b1eceddd

+1 -1
+1 -1
src/applications/repository/controller/PhabricatorRepositoryListController.php
··· 74 74 $panel = new AphrontPanelView(); 75 75 $panel->setHeader('Repositories'); 76 76 if ($is_admin) { 77 - $panel->setCreateButton('Create New Repository', '/diffusion/create/'); 77 + $panel->setCreateButton('Create New Repository', '/diffusion/new/'); 78 78 } 79 79 $panel->appendChild($table); 80 80 $panel->setNoBackground();