From 141e4396f7cbbebbc4f94115ab6dc01b6c5bfdf9 Mon Sep 17 00:00:00 2001 From: Gabriel Hernandez Date: Fri, 3 Jan 2025 14:14:47 +0000 Subject: [PATCH] docs --- docs/Contributing/Audit-logs.md | 2 ++ server/fleet/activities.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Contributing/Audit-logs.md b/docs/Contributing/Audit-logs.md index feadc6e0cda6..19dea07e2f81 100644 --- a/docs/Contributing/Audit-logs.md +++ b/docs/Contributing/Audit-logs.md @@ -1376,6 +1376,7 @@ Generated when an App Store app is added to Fleet. This activity contains the following fields: - "software_title": Name of the App Store app. +- "software_title_id": ID of the added software title. - "app_store_id": ID of the app on the Apple App Store. - "platform": Platform of the app (`darwin`, `ios`, or `ipados`). - "self_service": App installation can be initiated by device owner. @@ -1387,6 +1388,7 @@ This activity contains the following fields: ```json { "software_title": "Logic Pro", + "software_title_id": 123, "app_store_id": "1234567", "platform": "darwin", "self_service": false, diff --git a/server/fleet/activities.go b/server/fleet/activities.go index 3cc88ed50de2..5cb0d4fbb73a 100644 --- a/server/fleet/activities.go +++ b/server/fleet/activities.go @@ -1932,7 +1932,7 @@ func (a ActivityAddedAppStoreApp) Documentation() (activity string, details stri - "team_name": Name of the team to which this App Store app was added, or ` + "`null`" + ` if it was added to no team. - "team_id": ID of the team to which this App Store app was added, or ` + "`null`" + `if it was added to no team.`, `{ "software_title": "Logic Pro", - "software_title_id": 123, + "software_title_id": 123, "app_store_id": "1234567", "platform": "darwin", "self_service": false,