1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Restore "Auditor" as an alias for the commit message field "Auditors"

Summary:
Fixes T12197. I //think// this field was never recognized by Differential (it doesn't appear in D17070, but maybe that isn't the right change).

It was recognized by the ad-hoc regular expression which I replaced with a formal parser in D17262.

Allow the former parser to accept "Auditor" as an alias for "Auditors".

Test Plan: Committed a change with `Auditor: dog`, saw the audit trigger correctly in the web UI.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12197

Differential Revision: https://secure.phabricator.com/D17306
This commit is contained in:
epriestley 2017-02-03 06:12:51 -08:00
parent 4686769273
commit fd0591e168

View file

@ -9,6 +9,12 @@ final class DifferentialAuditorsCommitMessageField
return pht('Auditors');
}
public function getFieldAliases() {
return array(
'Auditor',
);
}
public function parseFieldValue($value) {
return $this->parseObjectList(
$value,