mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-17 01:08:41 +01:00
Allow querying PHIDs with GET
Summary: I want to link this page from outside. Test Plan: /phid/?phids=PHID-USER-gsraq7yc66r4stl4c6u3 Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3060
This commit is contained in:
parent
7ffe802671
commit
1b3da47fb0
1 changed files with 47 additions and 49 deletions
|
@ -22,7 +22,6 @@ final class PhabricatorPHIDLookupController
|
|||
public function processRequest() {
|
||||
|
||||
$request = $this->getRequest();
|
||||
if ($request->isFormPost()) {
|
||||
$phids = $request->getStrList('phids');
|
||||
if ($phids) {
|
||||
$handles = id(new PhabricatorObjectHandleData($phids))
|
||||
|
@ -75,7 +74,6 @@ final class PhabricatorPHIDLookupController
|
|||
'title' => 'PHID Lookup Results',
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
$lookup_form = new AphrontFormView();
|
||||
$lookup_form->setUser($request->getUser());
|
||||
|
|
Loading…
Add table
Reference in a new issue