add activity items when a Windows host turns MDM on (#12635)

For #12427, and its sub-tasks #12288 and #12612



![image](https://github.com/fleetdm/fleet/assets/4419992/b4c019dd-fbd3-4c1d-a2ad-a0bb4ebac817)
This commit is contained in:
Roberto Dip
2023-07-06 15:33:40 -03:00
committed by GitHub
parent 100b211ba5
commit 2b4798c4ab
10 changed files with 123 additions and 9 deletions
+3 -1
View File
@@ -553,6 +553,7 @@ This activity contains the following fields:
- "host_serial": Serial number of the host.
- "host_display_name": Display name of the host.
- "installed_from_dep": Whether the host was enrolled via DEP.
- "mdm_platform": Used to distinguish between Apple and Microsoft enrollments. Can be "apple", "microsoft" or not present. If missing, this value is treated as "apple" for backwards compatibility.
#### Example
@@ -560,7 +561,8 @@ This activity contains the following fields:
{
"host_serial": "C08VQ2AXHT96",
"host_display_name": "MacBookPro16,1 (C08VQ2AXHT96)",
"installed_from_dep": true
"installed_from_dep": true,
"mdm_platform": "apple"
}
```