mirror of
https://github.com/nextcloud/server.git
synced 2026-05-22 01:55:56 -04:00
feat: Add 'user_migration' to relevant quick presets
closes https://github.com/nextcloud/server/issues/57406 Signed-off-by: Jos Poortvliet <jospoortvliet@gmail.com>
This commit is contained in:
parent
fffba55318
commit
8acbf54a87
1 changed files with 6 additions and 2 deletions
|
|
@ -243,11 +243,15 @@ class PresetManager {
|
|||
'disabled' => []],
|
||||
Preset::SHARED
|
||||
=> [
|
||||
'enabled' => ['external','twofactor_backupcodes','twofactor_totp','twofactor_webauthn'],
|
||||
'enabled' => ['external','twofactor_backupcodes','twofactor_totp','twofactor_webauthn', 'user_migration'],
|
||||
'disabled' => ['user_status']],
|
||||
Preset::PRIVATE
|
||||
=> [
|
||||
'enabled' => ['twofactor_backupcodes','twofactor_totp','twofactor_webauthn'],
|
||||
'enabled' => ['twofactor_backupcodes','twofactor_totp','twofactor_webauthn', 'user_migration'],
|
||||
'disabled' => []],
|
||||
Preset::CLUB, Preset::FAMILY, Preset::SCHOOL, Preset::UNIVERSITY,
|
||||
=> [
|
||||
'enabled' => ['user_migration'],
|
||||
'disabled' => []],
|
||||
default => ['enabled' => [], 'disabled' => []],
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue