diff --git a/src/applications/people/storage/PhabricatorUser.php b/src/applications/people/storage/PhabricatorUser.php --- a/src/applications/people/storage/PhabricatorUser.php +++ b/src/applications/people/storage/PhabricatorUser.php @@ -59,7 +59,6 @@ private $rawCacheData = array(); private $usableCacheData = array(); - private $authorities = array(); private $handlePool; private $csrfSalt; @@ -705,23 +704,6 @@ } - /** - * Grant a user a source of authority, to let them bypass policy checks they - * could not otherwise. - */ - public function grantAuthority($authority) { - $this->authorities[] = $authority; - return $this; - } - - - /** - * Get authorities granted to the user. - */ - public function getAuthorities() { - return $this->authorities; - } - public function hasConduitClusterToken() { return ($this->conduitClusterToken !== self::ATTACHABLE); }