mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
8aa8ef49da
Summary: Ref T1279. These reviewers don't actually create a logical block yet (that is, revisions still transition to "accepted" even in their presence), but this handles everything except that. Test Plan: Added Herald rules and updated revisions; see screenshots. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1279 Differential Revision: https://secure.phabricator.com/D7244
11 lines
238 B
PHP
11 lines
238 B
PHP
<?php
|
|
|
|
final class DifferentialReviewerStatus {
|
|
|
|
const STATUS_BLOCKING = 'blocking';
|
|
const STATUS_ADDED = 'added';
|
|
const STATUS_ACCEPTED = 'accepted';
|
|
const STATUS_REJECTED = 'rejected';
|
|
const STATUS_COMMENTED = 'commented';
|
|
|
|
}
|