1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-31 08:58:20 +01:00

Hide uninstalled applications on the "Home Application Tiles" preferences page

Summary: Fixes T4685.

Test Plan: loaded home page settings and saw phrequent, uninstalled phrequent, refreshed, and no longer saw phrequent!

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T4685

Differential Revision: https://secure.phabricator.com/D8640
This commit is contained in:
Bob Trahan 2014-04-01 12:27:52 -07:00
parent a6b1fac117
commit 750a30d441

View file

@ -23,6 +23,7 @@ final class PhabricatorSettingsPanelHomePreferences
$apps = id(new PhabricatorApplicationQuery())
->setViewer($user)
->withInstalled(true)
->withUnlisted(false)
->execute();