Page MenuHomePhabricator

D16983.id40863.diff
No OneTemporary

D16983.id40863.diff

diff --git a/src/applications/base/PhabricatorApplication.php b/src/applications/base/PhabricatorApplication.php
--- a/src/applications/base/PhabricatorApplication.php
+++ b/src/applications/base/PhabricatorApplication.php
@@ -437,10 +437,19 @@
if (!self::isClassInstalled($class)) {
$result = false;
} else {
- $result = PhabricatorPolicyFilter::hasCapability(
- $viewer,
- self::getByClass($class),
- PhabricatorPolicyCapability::CAN_VIEW);
+ $application = self::getByClass($class);
+ if (!$application->canUninstall()) {
+ // If the application can not be uninstalled, always allow viewers
+ // to see it. In particular, this allows logged-out viewers to see
+ // Settings and load global default settings even if the install
+ // does not allow public viewers.
+ $result = true;
+ } else {
+ $result = PhabricatorPolicyFilter::hasCapability(
+ $viewer,
+ self::getByClass($class),
+ PhabricatorPolicyCapability::CAN_VIEW);
+ }
}
$cache->setKey($key, $result);
diff --git a/src/applications/settings/storage/PhabricatorUserPreferences.php b/src/applications/settings/storage/PhabricatorUserPreferences.php
--- a/src/applications/settings/storage/PhabricatorUserPreferences.php
+++ b/src/applications/settings/storage/PhabricatorUserPreferences.php
@@ -219,6 +219,13 @@
}
}
+ switch ($this->getBuiltinKey()) {
+ case self::BUILTIN_GLOBAL_DEFAULT:
+ // NOTE: Without this policy exception, the logged-out viewer can not
+ // see global preferences.
+ return true;
+ }
+
return false;
}

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 22, 5:32 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7389746
Default Alt Text
D16983.id40863.diff (1 KB)

Event Timeline