1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-02 23:41:21 +01:00

[EC-309] Change Device Verification default global setting value to false (#2106)

* EC-309 Change device verification default global setting value to false

* Update src/Core/Settings/GlobalSettings.cs

Co-authored-by: Matt Gibson <mgibson@bitwarden.com>

Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
This commit is contained in:
Federico Maccaroni 2022-07-11 18:23:31 -03:00 committed by GitHub
parent 92cd9179cb
commit 5ba988ebd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -483,7 +483,7 @@
public class TwoFactorAuthSettings : ITwoFactorAuthSettings public class TwoFactorAuthSettings : ITwoFactorAuthSettings
{ {
public bool EmailOnNewDeviceLogin { get; set; } = true; public bool EmailOnNewDeviceLogin { get; set; } = false
} }
} }
} }