mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
e8f063de25
Summary: Ref T8726. The gruntwork part of this is finally over. Test Plan: - Made a huge rule with every field. - Applied migration. - Verified the rule was still the same. - Pushed a bunch of commits and verified transcripts. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13601
24 lines
558 B
PHP
24 lines
558 B
PHP
<?php
|
|
|
|
final class DiffusionPreCommitContentCommitterRawHeraldField
|
|
extends DiffusionPreCommitContentHeraldField {
|
|
|
|
const FIELDCONST = 'diffusion.pre.commit.committer.raw';
|
|
|
|
public function getHeraldFieldName() {
|
|
return pht('Raw Committer');
|
|
}
|
|
|
|
public function getHeraldFieldValue($object) {
|
|
return $this->getAdapter()->getCommitterRaw();
|
|
}
|
|
|
|
protected function getHeraldFieldStandardConditions() {
|
|
return self::STANDARD_TEXT;
|
|
}
|
|
|
|
public function getHeraldFieldValueType($condition) {
|
|
return HeraldAdapter::VALUE_TEXT;
|
|
}
|
|
|
|
}
|