Changeset View
Changeset View
Standalone View
Standalone View
src/applications/people/storage/PhabricatorUserLog.php
| Show All 10 Lines | final class PhabricatorUserLog extends PhabricatorUserDAO | ||||
| const ACTION_LOGIN_LEGALPAD = 'login-legalpad'; | const ACTION_LOGIN_LEGALPAD = 'login-legalpad'; | ||||
| const ACTION_RESET_PASSWORD = 'reset-pass'; | const ACTION_RESET_PASSWORD = 'reset-pass'; | ||||
| const ACTION_CREATE = 'create'; | const ACTION_CREATE = 'create'; | ||||
| const ACTION_EDIT = 'edit'; | const ACTION_EDIT = 'edit'; | ||||
| const ACTION_ADMIN = 'admin'; | const ACTION_ADMIN = 'admin'; | ||||
| const ACTION_SYSTEM_AGENT = 'system-agent'; | const ACTION_SYSTEM_AGENT = 'system-agent'; | ||||
| const ACTION_MAILING_LIST = 'mailing-list'; | |||||
| const ACTION_DISABLE = 'disable'; | const ACTION_DISABLE = 'disable'; | ||||
| const ACTION_APPROVE = 'approve'; | const ACTION_APPROVE = 'approve'; | ||||
| const ACTION_DELETE = 'delete'; | const ACTION_DELETE = 'delete'; | ||||
| const ACTION_CONDUIT_CERTIFICATE = 'conduit-cert'; | const ACTION_CONDUIT_CERTIFICATE = 'conduit-cert'; | ||||
| const ACTION_CONDUIT_CERTIFICATE_FAILURE = 'conduit-cert-fail'; | const ACTION_CONDUIT_CERTIFICATE_FAILURE = 'conduit-cert-fail'; | ||||
| const ACTION_EMAIL_PRIMARY = 'email-primary'; | const ACTION_EMAIL_PRIMARY = 'email-primary'; | ||||
| Show All 30 Lines | return array( | ||||
| self::ACTION_LOGIN_LEGALPAD => | self::ACTION_LOGIN_LEGALPAD => | ||||
| pht('Login: Signed Required Legalpad Documents'), | pht('Login: Signed Required Legalpad Documents'), | ||||
| self::ACTION_LOGOUT => pht('Logout'), | self::ACTION_LOGOUT => pht('Logout'), | ||||
| self::ACTION_RESET_PASSWORD => pht('Reset Password'), | self::ACTION_RESET_PASSWORD => pht('Reset Password'), | ||||
| self::ACTION_CREATE => pht('Create Account'), | self::ACTION_CREATE => pht('Create Account'), | ||||
| self::ACTION_EDIT => pht('Edit Account'), | self::ACTION_EDIT => pht('Edit Account'), | ||||
| self::ACTION_ADMIN => pht('Add/Remove Administrator'), | self::ACTION_ADMIN => pht('Add/Remove Administrator'), | ||||
| self::ACTION_SYSTEM_AGENT => pht('Add/Remove System Agent'), | self::ACTION_SYSTEM_AGENT => pht('Add/Remove System Agent'), | ||||
| self::ACTION_MAILING_LIST => pht('Add/Remove Mailing List'), | |||||
| self::ACTION_DISABLE => pht('Enable/Disable'), | self::ACTION_DISABLE => pht('Enable/Disable'), | ||||
| self::ACTION_APPROVE => pht('Approve Registration'), | self::ACTION_APPROVE => pht('Approve Registration'), | ||||
| self::ACTION_DELETE => pht('Delete User'), | self::ACTION_DELETE => pht('Delete User'), | ||||
| self::ACTION_CONDUIT_CERTIFICATE | self::ACTION_CONDUIT_CERTIFICATE | ||||
| => pht('Conduit: Read Certificate'), | => pht('Conduit: Read Certificate'), | ||||
| self::ACTION_CONDUIT_CERTIFICATE_FAILURE | self::ACTION_CONDUIT_CERTIFICATE_FAILURE | ||||
| => pht('Conduit: Read Certificate Failure'), | => pht('Conduit: Read Certificate Failure'), | ||||
| self::ACTION_EMAIL_PRIMARY => pht('Email: Change Primary'), | self::ACTION_EMAIL_PRIMARY => pht('Email: Change Primary'), | ||||
| ▲ Show 20 Lines • Show All 139 Lines • Show Last 20 Lines | |||||