1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 13:23:27 +00:00

feat(DuckDuckGo): Added DuckDuckGo browser device type

This commit is contained in:
Todd Martin
2025-07-01 17:31:22 -04:00
committed by GitHub
parent f6cd661e8e
commit 8d547dcc28
2 changed files with 4 additions and 1 deletions

View File

@@ -55,5 +55,7 @@ public enum DeviceType : byte
[Display(Name = "MacOs CLI")]
MacOsCLI = 24,
[Display(Name = "Linux CLI")]
LinuxCLI = 25
LinuxCLI = 25,
[Display(Name = "DuckDuckGo")]
DuckDuckGoBrowser = 26,
}

View File

@@ -45,6 +45,7 @@ public static class DeviceTypes
DeviceType.IEBrowser,
DeviceType.SafariBrowser,
DeviceType.VivaldiBrowser,
DeviceType.DuckDuckGoBrowser,
DeviceType.UnknownBrowser
];