Linking to project will go to project's details page, not to the board

Board is not so much helpful to see for average users.
This commit is contained in:
2015-11-13 17:30:36 +05:00
parent 52230a803f
commit 411cf324dd

View File

@@ -56,7 +56,7 @@ final class PhabricatorProjectApplication extends PhabricatorApplication {
'feed/(?P<id>[1-9]\d*)/'
=> 'PhabricatorProjectFeedController',
'view/(?P<id>[1-9]\d*)/'
=> 'PhabricatorProjectViewController',
=> 'PhabricatorProjectProfileController',
'picture/(?P<id>[1-9]\d*)/'
=> 'PhabricatorProjectEditPictureController',
'icon/(?P<id>[1-9]\d*)/'
@@ -88,7 +88,7 @@ final class PhabricatorProjectApplication extends PhabricatorApplication {
=> 'PhabricatorProjectWatchController',
),
'/tag/' => array(
'(?P<slug>[^/]+)/' => 'PhabricatorProjectViewController',
'(?P<slug>[^/]+)/' => 'PhabricatorProjectProfileController',
'(?P<slug>[^/]+)/board/' => 'PhabricatorProjectBoardViewController',
),
);