mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
Allow arc project and branch showing up in diff emails
Summary: Add the arc project and branch fields in emails for revisions under review. I am not quite sure why we only show them for changes which is already accepted or needs revision. It would be nice to have them for changes under review too. Test Plan: Create a new revision and check email Reviewers: epriestley, lifeihuang, JoelB, #blessed_reviewers Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8035
This commit is contained in:
parent
83ab275b0f
commit
c5c9cd415d
2 changed files with 0 additions and 14 deletions
|
@ -36,13 +36,6 @@ final class DifferentialArcanistProjectFieldSpecification
|
|||
}
|
||||
|
||||
public function renderValueForMail($phase) {
|
||||
$status = $this->getRevision()->getStatus();
|
||||
|
||||
if ($status != ArcanistDifferentialRevisionStatus::NEEDS_REVISION &&
|
||||
$status != ArcanistDifferentialRevisionStatus::ACCEPTED) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$diff = $this->getRevision()->loadActiveDiff();
|
||||
if ($diff) {
|
||||
$phid = $diff->getArcanistProjectPHID();
|
||||
|
|
|
@ -32,13 +32,6 @@ final class DifferentialBranchFieldSpecification
|
|||
}
|
||||
|
||||
public function renderValueForMail($phase) {
|
||||
$status = $this->getRevision()->getStatus();
|
||||
|
||||
if ($status != ArcanistDifferentialRevisionStatus::NEEDS_REVISION &&
|
||||
$status != ArcanistDifferentialRevisionStatus::ACCEPTED) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$diff = $this->getRevision()->loadActiveDiff();
|
||||
if ($diff) {
|
||||
$description = $this->getBranchOrBookmarkDescription($diff);
|
||||
|
|
Loading…
Reference in a new issue