mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-13 12:54:53 +01:00
Summary: Ref T2769. Use Adapters to build all the strings for transcripts, then get rid of the old maps. Test Plan: Viewed revision and commit transcripts. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2769 Differential Revision: https://secure.phabricator.com/D6663
24 lines
1,021 B
PHP
24 lines
1,021 B
PHP
<?php
|
|
|
|
final class HeraldFieldConfig {
|
|
|
|
// TODO: Remove; still required by conditions, etc.
|
|
const FIELD_TITLE = 'title';
|
|
const FIELD_BODY = 'body';
|
|
const FIELD_AUTHOR = 'author';
|
|
const FIELD_REVIEWER = 'reviewer';
|
|
const FIELD_REVIEWERS = 'reviewers';
|
|
const FIELD_CC = 'cc';
|
|
const FIELD_TAGS = 'tags';
|
|
const FIELD_DIFF_FILE = 'diff-file';
|
|
const FIELD_DIFF_CONTENT = 'diff-content';
|
|
const FIELD_REPOSITORY = 'repository';
|
|
const FIELD_RULE = 'rule';
|
|
const FIELD_AFFECTED_PACKAGE = 'affected-package';
|
|
const FIELD_AFFECTED_PACKAGE_OWNER = 'affected-package-owner';
|
|
const FIELD_NEED_AUDIT_FOR_PACKAGE = 'need-audit-for-package';
|
|
const FIELD_DIFFERENTIAL_REVISION = 'differential-revision';
|
|
const FIELD_DIFFERENTIAL_REVIEWERS = 'differential-reviewers';
|
|
const FIELD_DIFFERENTIAL_CCS = 'differential-ccs';
|
|
|
|
}
|