Differential D17088 Diff 41104 src/applications/differential/field/DifferentialTasksCommitMessageField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/field/DifferentialTasksCommitMessageField.php
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | public function readFieldValueFromConduit($value) { | ||||
| return $this->readStringListFieldValueFromConduit($value); | return $this->readStringListFieldValueFromConduit($value); | ||||
| } | } | ||||
| public function renderFieldValue($value) { | public function renderFieldValue($value) { | ||||
| return $this->renderHandleList($value); | return $this->renderHandleList($value); | ||||
| } | } | ||||
| public function getFieldTransactions($value) { | public function getFieldTransactions($value) { | ||||
| // TODO: Implement this! | return array( | ||||
| return array(); | array( | ||||
| 'type' => 'tasks.set', | |||||
| 'value' => $value, | |||||
| ), | |||||
| ); | |||||
| } | } | ||||
| } | } | ||||