You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/AppInfo/ConfigLexicon.php
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,6 @@ public function getAppConfigs(): array {
49
49
type: ValueType::BOOL,
50
50
defaultRaw: true,
51
51
definition: 'adds share permission to public shares to allow adding them to your Nextcloud (federation)',
52
-
lazy: true,
53
52
),
54
53
newEntry(
55
54
key: self::SHARE_CUSTOM_TOKEN,
@@ -59,7 +58,6 @@ public function getAppConfigs(): array {
59
58
default => false,
60
59
},
61
60
definition: 'Allow users to customize share URL',
62
-
lazy: true,
63
61
note: 'Shares with guessable tokens may be accessed easily. Shares with custom tokens will continue to be accessible after this setting has been disabled.',
64
62
),
65
63
newEntry(self::SHARE_LINK_PASSWORD_DEFAULT, ValueType::BOOL, false, 'Ask for a password when sharing document by default'),
@@ -91,10 +89,10 @@ public function getAppConfigs(): array {
91
89
definition: 'Enforce expiration date for shares via link or mail'
92
90
),
93
91
newEntry(self::LASTCRON_TIMESTAMP, ValueType::INT, 0, 'timestamp of last cron execution'),
newEntry(self::OCM_INVITE_ACCEPT_DIALOG, ValueType::STRING, '', 'route to local invite accept dialog', lazy: true, note: 'set as empty string to disable feature'),
96
-
newEntry(self::UNIFIED_SEARCH_MIN_SEARCH_LENGTH, ValueType::INT, 1, 'Minimum search length to trigger the request', lazy: false, rename: 'unified-search.min-search-length'),
97
-
newEntry(self::UNIFIED_SEARCH_MAX_RESULTS_PER_REQUEST, ValueType::INT, 25, 'Maximum results returned per search request', lazy: false, rename: 'unified-search.max-results-per-request'),
newEntry(self::OCM_INVITE_ACCEPT_DIALOG, ValueType::STRING, '', 'route to local invite accept dialog', note: 'set as empty string to disable feature'),
94
+
newEntry(self::UNIFIED_SEARCH_MIN_SEARCH_LENGTH, ValueType::INT, 1, 'Minimum search length to trigger the request', rename: 'unified-search.min-search-length'),
95
+
newEntry(self::UNIFIED_SEARCH_MAX_RESULTS_PER_REQUEST, ValueType::INT, 25, 'Maximum results returned per search request', rename: 'unified-search.max-results-per-request'),
0 commit comments