aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/Config/ConfigLexicon.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/lib/Config/ConfigLexicon.php')
-rw-r--r--apps/files_sharing/lib/Config/ConfigLexicon.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Config/ConfigLexicon.php b/apps/files_sharing/lib/Config/ConfigLexicon.php
index 3211c755fc7..c2743a2c4ce 100644
--- a/apps/files_sharing/lib/Config/ConfigLexicon.php
+++ b/apps/files_sharing/lib/Config/ConfigLexicon.php
@@ -22,6 +22,7 @@ use OCP\Config\ValueType;
*/
class ConfigLexicon implements ILexicon {
public const SHOW_FEDERATED_AS_INTERNAL = 'show_federated_shares_as_internal';
+ public const SHOW_FEDERATED_TO_TRUSTED_AS_INTERNAL = 'show_federated_shares_to_trusted_servers_as_internal';
public function getStrictness(): Strictness {
return Strictness::IGNORE;
@@ -30,6 +31,7 @@ class ConfigLexicon implements ILexicon {
public function getAppConfigs(): array {
return [
new Entry(self::SHOW_FEDERATED_AS_INTERNAL, ValueType::BOOL, false, 'shows federated shares as internal shares', true),
+ new Entry(self::SHOW_FEDERATED_TO_TRUSTED_AS_INTERNAL, ValueType::BOOL, false, 'shows federated shares to trusted servers as internal shares', true),
];
}