From 92176253871bd63a2a407e997e7139a63b3d9030 Mon Sep 17 00:00:00 2001 From: Noah Talerman <47070608+noahtalerman@users.noreply.github.com> Date: Fri, 29 Mar 2024 16:44:36 -0400 Subject: [PATCH] Update error message for OS updates declaration profile - In Fleet 4.48, we'll ship "" - OS updates w/ DDM will ship in 4.49 - Update error message to let user know OS updates w/ DDM are coming soon. - In the Figma wireframes here for () add designs for new error message copy. --- server/fleet/apple_mdm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fleet/apple_mdm.go b/server/fleet/apple_mdm.go index 22bd82d6d4..1ee60cb3b9 100644 --- a/server/fleet/apple_mdm.go +++ b/server/fleet/apple_mdm.go @@ -597,7 +597,7 @@ func (r *MDMAppleRawDeclaration) ValidateUserProvided() error { // Check against types we don't allow if r.Type == `com.apple.configuration.softwareupdate.enforcement.specific` { - return NewInvalidArgumentError(r.Type, "Declaration profile can’t include OS updates settings. To control these settings, go to OS updates.") + return NewInvalidArgumentError(r.Type, "Declaration profile can’t include OS updates settings. OS updates coming soon!") } if _, forbidden := ForbiddenDeclTypes[r.Type]; forbidden {