1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 14:52:41 +01:00

Stop exposing raw "accountID" values directly in the web UI

Summary:
Ref T13493. The "AuthAccountView" UI element currently exposes raw account ID values, but I'm trying to make these many-to-one.

This isn't terribly useful as-is, so get rid of it. This element could use a design refresh in general.

Test Plan: Viewed the UI element in "External Accounts".

Maniphest Tasks: T13493

Differential Revision: https://secure.phabricator.com/D21010
This commit is contained in:
epriestley 2020-02-20 13:28:13 -08:00
parent 149155ee20
commit fbf050167e

View file

@ -37,8 +37,6 @@ final class PhabricatorAuthAccountView extends AphrontView {
$use_name = $username; $use_name = $username;
} else if (strlen($realname)) { } else if (strlen($realname)) {
$use_name = $realname; $use_name = $realname;
} else {
$use_name = $account->getAccountID();
} }
$content[] = phutil_tag( $content[] = phutil_tag(
@ -61,8 +59,6 @@ final class PhabricatorAuthAccountView extends AphrontView {
), ),
array( array(
$prov_name, $prov_name,
" \xC2\xB7 ",
$account->getAccountID(),
)); ));
$account_uri = $account->getAccountURI(); $account_uri = $account->getAccountURI();