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

Config - make "No auth providers configured" check use proper hyperlinking technology

Summary: Fixes T8346. Also gets rid of the air quotes on Auth and uses the "Appname Application" style we use elsewhere.

Test Plan: slapped an "|| true" in the checking logic and verified the link was rendered in a usable fashion just below the error message.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T8346

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

+3 -3
+3 -3
src/applications/config/check/PhabricatorAuthSetupCheck.php
··· 27 27 'You have not configured any authentication providers yet. You '. 28 28 'should add a provider (like username/password, LDAP, or GitHub '. 29 29 'OAuth) so users can register and log in. You can add and configure '. 30 - 'providers using the [[%s | "Auth" application]].', 31 - '/auth/'); 30 + 'providers using the Auth Application.'); 32 31 33 32 $this 34 33 ->newIssue('auth.noproviders') 35 34 ->setShortName(pht('No Auth Providers')) 36 35 ->setName(pht('No Authentication Providers Configured')) 37 - ->setMessage($message); 36 + ->setMessage($message) 37 + ->addLink('/auth/', pht('Auth Application')); 38 38 } 39 39 } 40 40 }