mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
Added DeviceTypes for CLI (#3329)
This commit is contained in:
parent
b716a925f8
commit
72a6bb6f64
@ -49,5 +49,11 @@ public enum DeviceType : byte
|
|||||||
[Display(Name = "SDK")]
|
[Display(Name = "SDK")]
|
||||||
SDK = 21,
|
SDK = 21,
|
||||||
[Display(Name = "Server")]
|
[Display(Name = "Server")]
|
||||||
Server = 22
|
Server = 22,
|
||||||
|
[Display(Name = "Windows CLI")]
|
||||||
|
WindowsCLI = 23,
|
||||||
|
[Display(Name = "MacOs CLI")]
|
||||||
|
MacOsCLI = 24,
|
||||||
|
[Display(Name = "Linux CLI")]
|
||||||
|
LinuxCLI = 25
|
||||||
}
|
}
|
||||||
|
@ -17,5 +17,8 @@ public static class DeviceTypes
|
|||||||
DeviceType.MacOsDesktop,
|
DeviceType.MacOsDesktop,
|
||||||
DeviceType.WindowsDesktop,
|
DeviceType.WindowsDesktop,
|
||||||
DeviceType.UWP,
|
DeviceType.UWP,
|
||||||
|
DeviceType.WindowsCLI,
|
||||||
|
DeviceType.MacOsCLI,
|
||||||
|
DeviceType.LinuxCLI,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user