@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove arcanist projects from DiffusionRequest

Summary: Ref T7604. This data is no longer used. Depends on D12894.

Test Plan: `grep`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7604

Differential Revision: https://secure.phabricator.com/D12895

-11
-11
src/applications/diffusion/request/DiffusionRequest.php
··· 22 22 protected $repository; 23 23 protected $repositoryCommit; 24 24 protected $repositoryCommitData; 25 - protected $arcanistProjects; 26 25 27 26 private $isClusterRequest = false; 28 27 private $initFromConduit = true; ··· 399 398 $this->repositoryCommit = $commit; 400 399 } 401 400 return $this->repositoryCommit; 402 - } 403 - 404 - public function loadArcanistProjects() { 405 - if (empty($this->arcanistProjects)) { 406 - $projects = id(new PhabricatorRepositoryArcanistProject())->loadAllWhere( 407 - 'repositoryID = %d', 408 - $this->getRepository()->getID()); 409 - $this->arcanistProjects = $projects; 410 - } 411 - return $this->arcanistProjects; 412 401 } 413 402 414 403 public function loadCommitData() {