Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing cluster_id field in compliance history GET endpoint #111

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ the user's access as described above:
{
"id": 2, // Internally, this is the ID of the compliance_events table to allow a GET query of a particular compliance event.
"cluster": {
"name": "cluster1"
"name": "cluster1",
"cluster_id": "215ce184-8dee-4cab-b99b-1f8f29dff611"
},
"parent_policy": {
"id": 3,
Expand Down Expand Up @@ -315,7 +316,8 @@ the user's access as described above:
{
"id": 1,
"cluster": {
"name": "cluster2"
"name": "cluster2",
"cluster_id": "415ce234-8dee-4cab-b99b-1f8f29dff461"
},
"parent_policy": {
"id": 2,
Expand Down
Loading