Browse Source

add basic securityLevel for 'other' devices

tags/v0.12.4
Jonathan Cobb 4 years ago
parent
commit
98967dc969
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bubble-server/src/main/java/bubble/model/device/BubbleDeviceType.java

+ 1
- 1
bubble-server/src/main/java/bubble/model/device/BubbleDeviceType.java View File

@@ -25,7 +25,7 @@ public enum BubbleDeviceType {
android (CertType.cer, true, DeviceSecurityLevel.basic),
linux (CertType.crt, true, DeviceSecurityLevel.maximum),
firefox (CertType.crt, false),
other (null, true);
other (null, true, DeviceSecurityLevel.basic);

@Getter private final CertType certType;
@Getter private final boolean selectable;


Loading…
Cancel
Save