diff --git a/src/components/automation/AutomationManager.vue b/src/components/automation/AutomationManager.vue index 1c02ad7..029d6bb 100644 --- a/src/components/automation/AutomationManager.vue +++ b/src/components/automation/AutomationManager.vue @@ -120,6 +120,13 @@ Show Relations + + + + + Policy Exclusions + + @@ -167,6 +174,20 @@ >{{ `Show Relations (${props.row.agents_count})` }} + + {{ + `Show Policy Exclusions (${ + props.row.excluded_agents.length + + props.row.excluded_clients.length + + props.row.excluded_sites.length + })` + }} + { + this.refresh(); + }); + }, toggleCheckbox(policy, type) { this.$q.loading.show(); let text = ""; diff --git a/src/components/automation/modals/PolicyExclusions.vue b/src/components/automation/modals/PolicyExclusions.vue new file mode 100644 index 0000000..a4dea37 --- /dev/null +++ b/src/components/automation/modals/PolicyExclusions.vue @@ -0,0 +1,155 @@ + + + \ No newline at end of file