mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-11 22:38:36 +01:00
22 lines
441 B
PHP
22 lines
441 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialAuditorsCommitMessageField
|
||
|
extends DifferentialCommitMessageField {
|
||
|
|
||
|
const FIELDKEY = 'phabricator:auditors';
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('Auditors');
|
||
|
}
|
||
|
|
||
|
public function parseFieldValue($value) {
|
||
|
return $this->parseObjectList(
|
||
|
$value,
|
||
|
array(
|
||
|
PhabricatorPeopleUserPHIDType::TYPECONST,
|
||
|
PhabricatorProjectProjectPHIDType::TYPECONST,
|
||
|
));
|
||
|
}
|
||
|
|
||
|
}
|