Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93607932
ReleephWorkCanPushConduitAPIMethod.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
Sat, Nov 30, 03:14
Size
820 B
Mime Type
text/x-php
Expires
Mon, Dec 2, 03:14 (2 d)
Engine
blob
Format
Raw Data
Handle
22675166
Attached To
rPH Phabricator
ReleephWorkCanPushConduitAPIMethod.php
View Options
<?php
final
class
ReleephWorkCanPushConduitAPIMethod
extends
ReleephConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'releephwork.canpush'
;
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_UNSTABLE
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Return whether the conduit user is allowed to push.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'projectPHID'
=>
'required string'
,
);
}
protected
function
defineReturnType
()
{
return
'bool'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$releeph_project
=
id
(
new
ReleephProject
())
->
loadOneWhere
(
'phid = %s'
,
$request
->
getValue
(
'projectPHID'
));
$user
=
$request
->
getUser
();
return
$releeph_project
->
isAuthoritative
(
$user
);
}
}
Event Timeline
Log In to Comment