Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15388686
D8570.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8570.diff
View Options
diff --git a/src/applications/project/controller/PhabricatorProjectListController.php b/src/applications/project/controller/PhabricatorProjectListController.php
--- a/src/applications/project/controller/PhabricatorProjectListController.php
+++ b/src/applications/project/controller/PhabricatorProjectListController.php
@@ -37,14 +37,14 @@
$item = id(new PHUIObjectItemView())
->setHeader($project->getName())
- ->setHref($this->getApplicationURI("view/{$id}/"));
+ ->setHref($this->getApplicationURI("view/{$id}/"))
+ ->setImageURI($project->getProfileImageURI());
if ($project->getStatus() == PhabricatorProjectStatus::STATUS_ARCHIVED) {
$item->addIcon('delete-grey', pht('Archived'));
$item->setDisabled(true);
}
-
$list->addItem($item);
}
diff --git a/src/applications/project/query/PhabricatorProjectSearchEngine.php b/src/applications/project/query/PhabricatorProjectSearchEngine.php
--- a/src/applications/project/query/PhabricatorProjectSearchEngine.php
+++ b/src/applications/project/query/PhabricatorProjectSearchEngine.php
@@ -21,7 +21,8 @@
}
public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
- $query = id(new PhabricatorProjectQuery());
+ $query = id(new PhabricatorProjectQuery())
+ ->needImages(true);
$member_phids = $saved->getParameter('memberPHIDs', array());
if ($member_phids && is_array($member_phids)) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 16, 4:15 AM (6 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7599860
Default Alt Text
D8570.diff (1 KB)
Attached To
Mode
D8570: Show project profile images in project list view
Attached
Detach File
Event Timeline
Log In to Comment