From fbf050167e2548b78c3c1ae4483b81ff1dde07fb Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 20 Feb 2020 13:28:13 -0800 Subject: [PATCH] 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 --- src/applications/auth/view/PhabricatorAuthAccountView.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/applications/auth/view/PhabricatorAuthAccountView.php b/src/applications/auth/view/PhabricatorAuthAccountView.php index 3f04281c8f..9746be7841 100644 --- a/src/applications/auth/view/PhabricatorAuthAccountView.php +++ b/src/applications/auth/view/PhabricatorAuthAccountView.php @@ -37,8 +37,6 @@ final class PhabricatorAuthAccountView extends AphrontView { $use_name = $username; } else if (strlen($realname)) { $use_name = $realname; - } else { - $use_name = $account->getAccountID(); } $content[] = phutil_tag( @@ -61,8 +59,6 @@ final class PhabricatorAuthAccountView extends AphrontView { ), array( $prov_name, - " \xC2\xB7 ", - $account->getAccountID(), )); $account_uri = $account->getAccountURI();