From 10ce1c2eb023de27dd3738c238f0d73f29502255 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Sun, 28 Jun 2020 10:26:22 -0400 Subject: [PATCH] set device security level during creation --- bubble-server/src/main/java/bubble/dao/device/DeviceDAO.java | 1 + 1 file changed, 1 insertion(+) diff --git a/bubble-server/src/main/java/bubble/dao/device/DeviceDAO.java b/bubble-server/src/main/java/bubble/dao/device/DeviceDAO.java index a5d87756..24a2604b 100644 --- a/bubble-server/src/main/java/bubble/dao/device/DeviceDAO.java +++ b/bubble-server/src/main/java/bubble/dao/device/DeviceDAO.java @@ -88,6 +88,7 @@ public class DeviceDAO extends AccountOwnedEntityDAO { } if (newDevicesCreated) refreshVpnUsers(); + deviceIdService.setDeviceSecurityLevel(result); return result; }