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

Add warnings to JIRA auth provider that we only support JIRA 6

Summary: Ref T4289. Make it clear that this provider does not currently work with JIRA 5.

Test Plan: Viewed JIRA provider from `/auth/`, saw warnings.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T4289

Differential Revision: https://secure.phabricator.com/D7906

+9
+9
src/applications/auth/provider/PhabricatorAuthProviderOAuth1JIRA.php
··· 11 11 return pht('JIRA'); 12 12 } 13 13 14 + public function getDescriptionForCreate() { 15 + return pht('Configure JIRA OAuth. NOTE: Only supports JIRA 6.'); 16 + } 17 + 14 18 public function getConfigurationHelp() { 15 19 if ($this->isSetup()) { 16 20 return pht( ··· 161 165 "Install the 'openssl' extension, restart your webserver, and try ". 162 166 "again.")); 163 167 } 168 + 169 + $form->appendRemarkupInstructions( 170 + pht( 171 + 'NOTE: This provider **only supports JIRA 6**. It will not work with '. 172 + 'JIRA 5 or earlier.')); 164 173 165 174 $is_setup = $this->isSetup(); 166 175