Page MenuHomePhorge

PhabricatorAuthSSHKeyListController.php
No OneTemporary

PhabricatorAuthSSHKeyListController.php

<?php
final class PhabricatorAuthSSHKeyListController
extends PhabricatorAuthSSHKeyController {
public function shouldAllowPublic() {
return true;
}
public function handleRequest(AphrontRequest $request) {
$object_phid = $request->getURIData('forPHID');
$object = $this->loadSSHKeyObject($object_phid, false);
if (!$object) {
return new Aphront404Response();
}
$engine = id(new PhabricatorAuthSSHKeySearchEngine())
->setSSHKeyObject($object);
return id($engine)
->setController($this)
->buildResponse();
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Jan 19, 12:58 (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1124818
Default Alt Text
PhabricatorAuthSSHKeyListController.php (576 B)

Event Timeline