Changeset View
Changeset View
Standalone View
Standalone View
src/applications/people/storage/PhabricatorUser.php
| Show All 28 Lines | final class PhabricatorUser | ||||
| protected $realName; | protected $realName; | ||||
| protected $passwordSalt; | protected $passwordSalt; | ||||
| protected $passwordHash; | protected $passwordHash; | ||||
| protected $profileImagePHID; | protected $profileImagePHID; | ||||
| protected $profileImageCache; | protected $profileImageCache; | ||||
| protected $availabilityCache; | protected $availabilityCache; | ||||
| protected $availabilityCacheTTL; | protected $availabilityCacheTTL; | ||||
| protected $consoleEnabled = 0; | |||||
| protected $consoleVisible = 0; | |||||
| protected $consoleTab = ''; | |||||
| protected $conduitCertificate; | protected $conduitCertificate; | ||||
| protected $isSystemAgent = 0; | protected $isSystemAgent = 0; | ||||
| protected $isMailingList = 0; | protected $isMailingList = 0; | ||||
| protected $isAdmin = 0; | protected $isAdmin = 0; | ||||
| protected $isDisabled = 0; | protected $isDisabled = 0; | ||||
| protected $isEmailVerified = 0; | protected $isEmailVerified = 0; | ||||
| protected $isApproved = 0; | protected $isApproved = 0; | ||||
| ▲ Show 20 Lines • Show All 136 Lines • ▼ Show 20 Lines | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| self::CONFIG_AUX_PHID => true, | self::CONFIG_AUX_PHID => true, | ||||
| self::CONFIG_COLUMN_SCHEMA => array( | self::CONFIG_COLUMN_SCHEMA => array( | ||||
| 'userName' => 'sort64', | 'userName' => 'sort64', | ||||
| 'realName' => 'text128', | 'realName' => 'text128', | ||||
| 'passwordSalt' => 'text32?', | 'passwordSalt' => 'text32?', | ||||
| 'passwordHash' => 'text128?', | 'passwordHash' => 'text128?', | ||||
| 'profileImagePHID' => 'phid?', | 'profileImagePHID' => 'phid?', | ||||
| 'consoleEnabled' => 'bool', | |||||
| 'consoleVisible' => 'bool', | |||||
| 'consoleTab' => 'text64', | |||||
| 'conduitCertificate' => 'text255', | 'conduitCertificate' => 'text255', | ||||
| 'isSystemAgent' => 'bool', | 'isSystemAgent' => 'bool', | ||||
| 'isMailingList' => 'bool', | 'isMailingList' => 'bool', | ||||
| 'isDisabled' => 'bool', | 'isDisabled' => 'bool', | ||||
| 'isAdmin' => 'bool', | 'isAdmin' => 'bool', | ||||
| 'isEmailVerified' => 'uint32', | 'isEmailVerified' => 'uint32', | ||||
| 'isApproved' => 'uint32', | 'isApproved' => 'uint32', | ||||
| 'accountSecret' => 'bytes64', | 'accountSecret' => 'bytes64', | ||||
| ▲ Show 20 Lines • Show All 1,383 Lines • Show Last 20 Lines | |||||