-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PROD-1397 Update systems page with table view (#5084)
Co-authored-by: Lucano Vera <[email protected]>
- Loading branch information
1 parent
dc3de5b
commit f390fc9
Showing
22 changed files
with
553 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
clients/admin-ui/cypress/fixtures/systems/systems_paginated.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"fides_key": "fidesctl_system", | ||
"organization_fides_key": "default_organization", | ||
"tags": null, | ||
"name": "Fidesctl System", | ||
"description": "Software that functionally applies Fides.", | ||
"meta": null, | ||
"fidesctl_meta": null, | ||
"system_type": "Service", | ||
"privacy_declarations": [ | ||
{ | ||
"name": "Store system data.", | ||
"data_categories": ["system.operations", "user.contact"], | ||
"data_use": "functional.service.improve", | ||
"data_subjects": ["anonymous_user"], | ||
"dataset_references": ["public"], | ||
"cookies": [{ "name": "cookie" }, { "name": "cookie2" }], | ||
"id": "pri_ac9d4dfb-d033-4b06-bc7f-968df8d125ff" | ||
} | ||
], | ||
"administrating_department": "Not defined", | ||
"ingress": [], | ||
"egress": [], | ||
"cookies": [ | ||
{ | ||
"name": "test_cookie", | ||
"path": "/", | ||
"domain": "https://www.example.com" | ||
} | ||
] | ||
}, | ||
{ | ||
"fides_key": "demo_analytics_system", | ||
"organization_fides_key": "default_organization", | ||
"tags": null, | ||
"name": "Demo Analytics System", | ||
"description": "A system used for analyzing customer behaviour.", | ||
"meta": null, | ||
"fidesctl_meta": null, | ||
"system_type": "Service", | ||
"egress": null, | ||
"ingress": [ | ||
{ | ||
"fides_key": "demo_marketing_system", | ||
"type": "system", | ||
"data_categories": null | ||
} | ||
], | ||
"privacy_declarations": [ | ||
{ | ||
"name": "Analyze customer behaviour for improvements.", | ||
"data_categories": ["user.contact", "user.device.cookie_id"], | ||
"data_use": "functional.service.improve", | ||
"data_subjects": ["customer"], | ||
"dataset_references": ["demo_users_dataset"], | ||
"egress": null, | ||
"ingress": null, | ||
"cookies": [], | ||
"id": "pri_ac9d4dfb-d033-4b06-bc7f-968df8d125ff" | ||
} | ||
], | ||
"administrating_department": "Engineering", | ||
"cookies": [] | ||
}, | ||
{ | ||
"fides_key": "demo_marketing_system", | ||
"organization_fides_key": "default_organization", | ||
"tags": null, | ||
"name": "Demo Marketing System", | ||
"description": "Collect data about our users for marketing.", | ||
"meta": null, | ||
"fidesctl_meta": null, | ||
"system_type": "Service", | ||
"egress": [ | ||
{ | ||
"fides_key": "demo_analytics_system", | ||
"type": "system", | ||
"data_categories": null | ||
} | ||
], | ||
"ingress": null, | ||
"privacy_declarations": [ | ||
{ | ||
"name": "Collect data for marketing", | ||
"data_categories": ["user.device.cookie_id"], | ||
"data_use": "marketing", | ||
"data_subjects": ["customer"], | ||
"dataset_references": null, | ||
"egress": null, | ||
"ingress": null, | ||
"cookies": [{ "name": "_ga" }], | ||
"id": "pri_06430a1c-1365-422e-90a7-d444ddb32181" | ||
} | ||
], | ||
"administrating_department": "Marketing", | ||
"cookies": [] | ||
} | ||
], | ||
"total": 3, | ||
"page": 1, | ||
"size": 20, | ||
"pages": 1 | ||
} |
Oops, something went wrong.