mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-02-21 20:00:44 +00:00
add more targeting options to bulk actions
This commit is contained in:
@@ -10,6 +10,16 @@
|
||||
<br />
|
||||
</q-card-section>
|
||||
<q-form @submit.prevent="send">
|
||||
<q-card-section>
|
||||
<div class="q-pa-none">
|
||||
<p>Agent Type</p>
|
||||
<div class="q-gutter-sm">
|
||||
<q-radio dense v-model="monType" val="all" label="All" />
|
||||
<q-radio dense v-model="monType" val="servers" label="Servers" />
|
||||
<q-radio dense v-model="monType" val="workstations" label="Workstations" />
|
||||
</div>
|
||||
</div>
|
||||
</q-card-section>
|
||||
<q-card-section>
|
||||
<div class="q-pa-none">
|
||||
<p>Choose Target</p>
|
||||
@@ -166,6 +176,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
target: "client",
|
||||
monType: "all",
|
||||
selected_mode: null,
|
||||
scriptOptions: [],
|
||||
scriptPK: null,
|
||||
@@ -206,6 +217,7 @@ export default {
|
||||
this.$q.loading.show();
|
||||
const data = {
|
||||
mode: this.selected_mode,
|
||||
monType: this.monType,
|
||||
target: this.target,
|
||||
site: this.site.value,
|
||||
client: this.client.value,
|
||||
|
||||
Reference in New Issue
Block a user