diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-08-25 08:15:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 08:15:24 +0200 |
commit | 405b5de6fa408841fb242d77ca7d37c1fb87efa4 (patch) | |
tree | ae34eb3ea22b926f73431889ee3a8ed0d19d99c6 /config | |
parent | 56df202d5202f8748bb476afd91fe74cf0d1ea11 (diff) | |
parent | 7a13388fe94411b527b8f78db3a25598b9700544 (diff) | |
download | nextcloud-server-405b5de6fa408841fb242d77ca7d37c1fb87efa4.tar.gz nextcloud-server-405b5de6fa408841fb242d77ca7d37c1fb87efa4.zip |
Merge pull request #33569 from nextcloud/enh/hide-projects
Add config option to hide deprecated projects in sharing tab by default
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index fe45223361f..05fba5777eb 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2229,5 +2229,13 @@ $CONFIG = [ * \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE * ] */ -'account_manager.default_property_scope' => [] +'account_manager.default_property_scope' => [], + +/** + * Enable the deprecated Projects feature, + * superseded by Related resources as of Nextcloud 25 + * + * Defaults to ``false`` + */ +'projects.enabled' => false, ]; |