mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-29 04:28:12 +01:00
Summary: Ref T3718. Remove `bulkLoad()` and header-view rendering wrappers. Test Plan: Viewed a request, looked the same. `grep`'d for stuff. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T3718 Differential Revision: https://secure.phabricator.com/D8809
19 lines
407 B
PHP
19 lines
407 B
PHP
<?php
|
|
|
|
final class ReleephOriginalCommitFieldSpecification
|
|
extends ReleephFieldSpecification {
|
|
|
|
public function getFieldKey() {
|
|
return 'commit:name';
|
|
}
|
|
|
|
public function getName() {
|
|
return 'Commit';
|
|
}
|
|
|
|
public function renderPropertyViewValue(array $handles) {
|
|
$pull = $this->getReleephRequest();
|
|
return $this->slowlyLoadHandle($pull->getRequestCommitPHID())->renderLink();
|
|
}
|
|
|
|
}
|