1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

fix: Added web browser clients to allowed approving device types

(cherry picked from commit a3e3c7f96c09266584d7576253f9c7e7ece0acdb)
This commit is contained in:
Todd Martin 2025-01-15 09:45:13 -05:00 committed by Todd Martin
parent 0991b7f5a6
commit 1cc45d1abe
No known key found for this signature in database
GPG Key ID: 663E7AF5C839BC8F

View File

@ -12,6 +12,7 @@ public static class LoginApprovingDeviceTypes
var deviceTypes = new List<DeviceType>();
deviceTypes.AddRange(DeviceTypes.DesktopTypes);
deviceTypes.AddRange(DeviceTypes.MobileTypes);
deviceTypes.AddRange(DeviceTypes.BrowserTypes);
_deviceTypes = deviceTypes.AsReadOnly();
}