Differential D9859 Diff 23678 src/applications/conduit/controller/PhabricatorConduitTokenController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conduit/controller/PhabricatorConduitTokenController.php
| <?php | <?php | ||||
| /** | |||||
| * @group conduit | |||||
| */ | |||||
| final class PhabricatorConduitTokenController | final class PhabricatorConduitTokenController | ||||
| extends PhabricatorConduitController { | extends PhabricatorConduitController { | ||||
| public function processRequest() { | public function processRequest() { | ||||
| $user = $this->getRequest()->getUser(); | $user = $this->getRequest()->getUser(); | ||||
| id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession( | id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession( | ||||
| $user, | $user, | ||||
| ▲ Show 20 Lines • Show All 53 Lines • ▼ Show 20 Lines | return $this->buildApplicationPage( | ||||
| array( | array( | ||||
| $crumbs, | $crumbs, | ||||
| $object_box, | $object_box, | ||||
| ), | ), | ||||
| array( | array( | ||||
| 'title' => pht('Certificate Install Token'), | 'title' => pht('Certificate Install Token'), | ||||
| )); | )); | ||||
| } | } | ||||
| } | } | ||||