Differential D18962 Diff 45486 src/infrastructure/daemon/workers/storage/PhabricatorWorkerBulkJob.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/daemon/workers/storage/PhabricatorWorkerBulkJob.php
| Show First 20 Lines • Show All 174 Lines • ▼ Show 20 Lines | public function runTask( | ||||
| PhabricatorWorkerBulkTask $task) { | PhabricatorWorkerBulkTask $task) { | ||||
| return $this->getJobImplementation()->runTask($actor, $this, $task); | return $this->getJobImplementation()->runTask($actor, $this, $task); | ||||
| } | } | ||||
| public function getJobName() { | public function getJobName() { | ||||
| return $this->getJobImplementation()->getJobName($this); | return $this->getJobImplementation()->getJobName($this); | ||||
| } | } | ||||
| public function getCurtainActions(PhabricatorUser $viewer) { | |||||
| return $this->getJobImplementation()->getCurtainActions($viewer, $this); | |||||
| } | |||||
| /* -( PhabricatorPolicyInterface )----------------------------------------- */ | /* -( PhabricatorPolicyInterface )----------------------------------------- */ | ||||
| public function getCapabilities() { | public function getCapabilities() { | ||||
| return array( | return array( | ||||
| PhabricatorPolicyCapability::CAN_VIEW, | PhabricatorPolicyCapability::CAN_VIEW, | ||||
| PhabricatorPolicyCapability::CAN_EDIT, | PhabricatorPolicyCapability::CAN_EDIT, | ||||
| ▲ Show 20 Lines • Show All 81 Lines • Show Last 20 Lines | |||||