From 7c67b5e600c6d01b54ade211b16c9e6e1aa0b710 Mon Sep 17 00:00:00 2001 From: 20after4 <20after4@deviantart.com> Date: Thu, 15 Mar 2012 16:37:00 -0700 Subject: [PATCH] Add new jumpnav actions for audits and feed Test Plan: type /a - should jump to audits type /f - should jump to feed Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1823 --- .../search/engine/jumpnav/PhabricatorJumpNavHandler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/applications/search/engine/jumpnav/PhabricatorJumpNavHandler.php b/src/applications/search/engine/jumpnav/PhabricatorJumpNavHandler.php index 6d56995995..16468afc10 100644 --- a/src/applications/search/engine/jumpnav/PhabricatorJumpNavHandler.php +++ b/src/applications/search/engine/jumpnav/PhabricatorJumpNavHandler.php @@ -24,6 +24,8 @@ final class PhabricatorJumpNavHandler { $patterns = array( '/^help/i' => 'uri:'.$help_href, + '/^a$/i' => 'uri:/audit/', + '/^f$/i' => 'uri:/feed/', '/^d$/i' => 'uri:/differential/', '/^r$/i' => 'uri:/diffusion/', '/^t$/i' => 'uri:/maniphest/',