Differential D17067 Diff 41083 src/applications/differential/field/DifferentialTagsCommitMessageField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/field/DifferentialTagsCommitMessageField.php
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | final class DifferentialTagsCommitMessageField | ||||
| public function readFieldValueFromConduit($value) { | 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) { | |||||
| return array( | |||||
| array( | |||||
| 'type' => PhabricatorProjectsEditEngineExtension::EDITKEY_SET, | |||||
| 'value' => $value, | |||||
| ), | |||||
| ); | |||||
| } | |||||
| } | } | ||||