Christopher Johnson (WMDE) has uploaded a new change for review. https://gerrit.wikimedia.org/r/179099
Change subject: fix https://phabricator.wikimedia.org/tag/XXX/board/ times out ...................................................................... fix https://phabricator.wikimedia.org/tag/XXX/board/ times out Change-Id: Id4ba180e7b7745807da4c0ab7f7b2f51f0089e02 ref: https://phabricator.wikimedia.org/T78208 --- M src/application/SprintApplication.php 1 file changed, 6 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/phabricator/extensions/Sprint refs/changes/99/179099/1 diff --git a/src/application/SprintApplication.php b/src/application/SprintApplication.php index f7a0d5a..aaf1032 100644 --- a/src/application/SprintApplication.php +++ b/src/application/SprintApplication.php @@ -29,6 +29,12 @@ ); } + public function getFactObjectsForAnalysis() { + return array( + new ManiphestTask(), + ); + } + public function getRoutes() { return array( '/project/' => array( @@ -78,7 +84,6 @@ ), '/tag/' => array( '(?P<slug>[^/]+)/' => 'SprintProjectProfileController', - '(?P<slug>[^/]+)/board/' => 'SprintBoardViewController', ), ); } -- To view, visit https://gerrit.wikimedia.org/r/179099 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id4ba180e7b7745807da4c0ab7f7b2f51f0089e02 Gerrit-PatchSet: 1 Gerrit-Project: phabricator/extensions/Sprint Gerrit-Branch: master Gerrit-Owner: Christopher Johnson (WMDE) <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
