From ce091be7204a92c53c797eb51f671c5fef682a22 Mon Sep 17 00:00:00 2001 From: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:30:35 -0400 Subject: [PATCH] Fleet API: Surface org_logo_url_light_background to my device page (#33654) --- server/service/devices.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/server/service/devices.go b/server/service/devices.go index 5edefe8456..8a2e0c3280 100644 --- a/server/service/devices.go +++ b/server/service/devices.go @@ -203,12 +203,13 @@ func getDeviceHostEndpoint(ctx context.Context, request interface{}, svc fleet.S } return getDeviceHostResponse{ - Host: resp, - OrgLogoURL: ac.OrgInfo.OrgLogoURL, - OrgContactURL: ac.OrgInfo.ContactURL, - License: *license, - GlobalConfig: deviceGlobalConfig, - SelfService: hasSelfService, + Host: resp, + OrgLogoURL: ac.OrgInfo.OrgLogoURL, + OrgLogoURLLightBackground: ac.OrgInfo.OrgLogoURLLightBackground, + OrgContactURL: ac.OrgInfo.ContactURL, + License: *license, + GlobalConfig: deviceGlobalConfig, + SelfService: hasSelfService, }, nil }