Differential D12164 Diff 29239 src/applications/auth/storage/PhabricatorAuthProviderConfigTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/storage/PhabricatorAuthProviderConfigTransaction.php
| Show First 20 Lines • Show All 98 Lines • ▼ Show 20 Lines | switch ($this->getTransactionType()) { | ||||
| return pht( | return pht( | ||||
| '%s disabled registration.', | '%s disabled registration.', | ||||
| $this->renderHandleLink($author_phid)); | $this->renderHandleLink($author_phid)); | ||||
| } | } | ||||
| break; | break; | ||||
| case self::TYPE_LINK: | case self::TYPE_LINK: | ||||
| if ($new) { | if ($new) { | ||||
| return pht( | return pht( | ||||
| '%s enabled accont linking.', | '%s enabled account linking.', | ||||
| $this->renderHandleLink($author_phid)); | $this->renderHandleLink($author_phid)); | ||||
| } else { | } else { | ||||
| return pht( | return pht( | ||||
| '%s disabled account linking.', | '%s disabled account linking.', | ||||
| $this->renderHandleLink($author_phid)); | $this->renderHandleLink($author_phid)); | ||||
| } | } | ||||
| break; | break; | ||||
| case self::TYPE_UNLINK: | case self::TYPE_UNLINK: | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||