diff --git a/src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php b/src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php index 5653b4da89..faa21f6c3d 100644 --- a/src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php +++ b/src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php @@ -11,6 +11,10 @@ public function getProviderName() { return pht('JIRA'); } + public function getDescriptionForCreate() { + return pht('Configure JIRA OAuth. NOTE: Only supports JIRA 6.'); + } + public function getConfigurationHelp() { if ($this->isSetup()) { return pht( @@ -162,6 +166,11 @@ public function extendEditForm( "again.")); } + $form->appendRemarkupInstructions( + pht( + 'NOTE: This provider **only supports JIRA 6**. It will not work with '. + 'JIRA 5 or earlier.')); + $is_setup = $this->isSetup(); $e_required = $request->isFormPost() ? null : true;