Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96793591
DiffusionResolveRefsConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Dec 30, 22:03
Size
794 B
Mime Type
text/x-php
Expires
Wed, Jan 1, 22:03 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23226769
Attached To
rPH Phabricator
DiffusionResolveRefsConduitAPIMethod.php
View Options
<?php
final
class
DiffusionResolveRefsConduitAPIMethod
extends
DiffusionQueryConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'diffusion.resolverefs'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Resolve references into stable, canonical identifiers.'
);
}
public
function
defineReturnType
()
{
return
'dict<string, list<dict<string, wild>>>'
;
}
protected
function
defineCustomParamTypes
()
{
return
array
(
'refs'
=>
'required list<string>'
,
);
}
protected
function
getResult
(
ConduitAPIRequest
$request
)
{
$refs
=
$request
->
getValue
(
'refs'
);
return
id
(
new
DiffusionLowLevelResolveRefsQuery
())
->
setRepository
(
$this
->
getDiffusionRequest
()->
getRepository
())
->
withRefs
(
$refs
)
->
execute
();
}
}
Event Timeline
Log In to Comment