Merge pull request #59000 from nextcloud/bugfix/noid/enable-onetime-qrcode-for-34

feat(qrcode): Enable one-time QR codes by default for 34
This commit is contained in:
Andy Scherzinger 2026-03-17 15:37:12 +01:00 committed by GitHub
commit 3961a8be67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,7 +35,7 @@ class ConfigLexicon implements ILexicon {
public function getAppConfigs(): array {
return [
new Entry(key: self::LOGIN_QRCODE_ONETIME, type: ValueType::BOOL, defaultRaw: false, definition: 'Use onetime QR codes for app passwords', note: 'Limits compatibility for mobile apps to versions released in 2026 or later'),
new Entry(key: self::LOGIN_QRCODE_ONETIME, type: ValueType::BOOL, defaultRaw: true, definition: 'Use onetime QR codes for app passwords', note: 'Limits compatibility for mobile apps to versions released in 2026 or later'),
];
}