From 949dbbd8c300ad1257af491ada7c19cf053f3a3b Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Mon, 3 Mar 2025 08:55:12 -0500 Subject: [PATCH] Android: Add android platform to the "generate MDM stats" cron job (#26621) --- server/datastore/mysql/hosts.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/datastore/mysql/hosts.go b/server/datastore/mysql/hosts.go index 24126149c6..2d846b66d5 100644 --- a/server/datastore/mysql/hosts.go +++ b/server/datastore/mysql/hosts.go @@ -4156,8 +4156,7 @@ func (ds *Datastore) AggregatedMDMSolutions(ctx context.Context, teamID *uint, p func (ds *Datastore) GenerateAggregatedMunkiAndMDM(ctx context.Context) error { var ( - // TODO(android): add android to this list? - platforms = []string{"", "darwin", "windows", "ios", "ipados"} + platforms = []string{"", "darwin", "windows", "ios", "ipados", "android"} teamIDs []uint )