|
@@ -9,8 +9,50 @@ |
|
@@ -9,8 +9,50 @@ |
|
9
|
width="700px"
|
9
|
width="700px"
|
|
10
|
@ok="handleSubmit"
|
10
|
@ok="handleSubmit"
|
|
11
|
>
|
11
|
>
|
|
12
|
- <BasicForm @register="registerForm" />
|
12
|
+ <BasicForm @register="registerForm">
|
|
|
|
13
|
+ <template #isolatedTbRuleEngine="{ model }">
|
|
|
|
14
|
+ <div class="flex items-center">
|
|
|
|
15
|
+ <Checkbox v-model:checked="model.isolatedTbRuleEngine" @change="handleCheckbox" />
|
|
|
|
16
|
+ <span>使用独立的规则引擎服务</span>
|
|
|
|
17
|
+ <span style="color: grey">(每个独立租户需要单独的规则引擎微服务)</span>
|
|
|
|
18
|
+ </div>
|
|
|
|
19
|
+ </template>
|
|
|
|
20
|
+ </BasicForm>
|
|
13
|
<!-- <CpnsTenantSet ref="getChildData" :parentData="parentSetData" /> -->
|
21
|
<!-- <CpnsTenantSet ref="getChildData" :parentData="parentSetData" /> -->
|
|
|
|
22
|
+
|
|
|
|
23
|
+ <CollapseContainer
|
|
|
|
24
|
+ title="队列"
|
|
|
|
25
|
+ :defaultExpand="true"
|
|
|
|
26
|
+ v-if="isolatedTbRuleEngine"
|
|
|
|
27
|
+ class="mb-2"
|
|
|
|
28
|
+ >
|
|
|
|
29
|
+ <CollapseContainer
|
|
|
|
30
|
+ v-for="(item, index) in queueConfiguration"
|
|
|
|
31
|
+ :key="item.id"
|
|
|
|
32
|
+ :title="item.name"
|
|
|
|
33
|
+ :defaultExpand="true"
|
|
|
|
34
|
+ class="my-4"
|
|
|
|
35
|
+ style="box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f"
|
|
|
|
36
|
+ >
|
|
|
|
37
|
+ <template #action v-if="item.name !== 'Main'">
|
|
|
|
38
|
+ <Tooltip title="删除">
|
|
|
|
39
|
+ <Icon
|
|
|
|
40
|
+ class="ml-2 cursor-pointer"
|
|
|
|
41
|
+ icon="fluent:delete-off-20-regular"
|
|
|
|
42
|
+ size="20"
|
|
|
|
43
|
+ @click="handleDeleteTenant(index)"
|
|
|
|
44
|
+ />
|
|
|
|
45
|
+ </Tooltip>
|
|
|
|
46
|
+ </template>
|
|
|
|
47
|
+ <TenantConfig
|
|
|
|
48
|
+ ref="getTenantConfig"
|
|
|
|
49
|
+ :record="item"
|
|
|
|
50
|
+ @handleNameChange="(name) => handleNameChange(index, name)"
|
|
|
|
51
|
+ />
|
|
|
|
52
|
+ </CollapseContainer>
|
|
|
|
53
|
+
|
|
|
|
54
|
+ <Button @click="handleCreateQueue" type="primary" class="my-3">添加队列</Button>
|
|
|
|
55
|
+ </CollapseContainer>
|
|
14
|
<CollapseContainer title="实体 (0-无限制)" :defaultExpand="false">
|
56
|
<CollapseContainer title="实体 (0-无限制)" :defaultExpand="false">
|
|
15
|
<Entity ref="getEntity" />
|
57
|
<Entity ref="getEntity" />
|
|
16
|
</CollapseContainer>
|
58
|
</CollapseContainer>
|
|
@@ -36,7 +78,15 @@ |
|
@@ -36,7 +78,15 @@ |
|
36
|
</div>
|
78
|
</div>
|
|
37
|
</template>
|
79
|
</template>
|
|
38
|
<script lang="ts">
|
80
|
<script lang="ts">
|
|
39
|
- import { defineComponent, ref, computed, unref, getCurrentInstance, reactive } from 'vue';
|
81
|
+ import {
|
|
|
|
82
|
+ defineComponent,
|
|
|
|
83
|
+ ref,
|
|
|
|
84
|
+ computed,
|
|
|
|
85
|
+ unref,
|
|
|
|
86
|
+ getCurrentInstance,
|
|
|
|
87
|
+ reactive,
|
|
|
|
88
|
+ nextTick,
|
|
|
|
89
|
+ } from 'vue';
|
|
40
|
import { BasicForm, useForm } from '/@/components/Form';
|
90
|
import { BasicForm, useForm } from '/@/components/Form';
|
|
41
|
import { formSchema } from './config';
|
91
|
import { formSchema } from './config';
|
|
42
|
import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
|
92
|
import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
|
|
@@ -51,6 +101,9 @@ |
|
@@ -51,6 +101,9 @@ |
|
51
|
import { saveTenantProfileApi } from '/@/api/tenant/tenantApi';
|
101
|
import { saveTenantProfileApi } from '/@/api/tenant/tenantApi';
|
|
52
|
import { useMessage } from '/@/hooks/web/useMessage';
|
102
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
53
|
import { CollapseContainer } from '/@/components/Container/index';
|
103
|
import { CollapseContainer } from '/@/components/Container/index';
|
|
|
|
104
|
+ import { Checkbox, Tooltip, Button } from 'ant-design-vue';
|
|
|
|
105
|
+ import TenantConfig from './components/TenantConfig.vue';
|
|
|
|
106
|
+ import { buildUUID } from '/@/utils/uuid';
|
|
54
|
|
107
|
|
|
55
|
export default defineComponent({
|
108
|
export default defineComponent({
|
|
56
|
name: 'ConfigDrawer',
|
109
|
name: 'ConfigDrawer',
|
|
@@ -66,6 +119,10 @@ |
|
@@ -66,6 +119,10 @@ |
|
66
|
Ota,
|
119
|
Ota,
|
|
67
|
Speed,
|
120
|
Speed,
|
|
68
|
Entity,
|
121
|
Entity,
|
|
|
|
122
|
+ Checkbox,
|
|
|
|
123
|
+ Tooltip,
|
|
|
|
124
|
+ Button,
|
|
|
|
125
|
+ TenantConfig,
|
|
69
|
},
|
126
|
},
|
|
70
|
emits: ['success', 'register'],
|
127
|
emits: ['success', 'register'],
|
|
71
|
setup(_, { emit }) {
|
128
|
setup(_, { emit }) {
|
|
@@ -84,15 +141,177 @@ |
|
@@ -84,15 +141,177 @@ |
|
84
|
const getOta = ref(null);
|
141
|
const getOta = ref(null);
|
|
85
|
const getWs = ref(null);
|
142
|
const getWs = ref(null);
|
|
86
|
const getSpeed = ref(null);
|
143
|
const getSpeed = ref(null);
|
|
|
|
144
|
+ const getTenantConfig = ref(null);
|
|
87
|
|
145
|
|
|
88
|
const editGetId: any = ref('');
|
146
|
const editGetId: any = ref('');
|
|
89
|
const isDefault = ref(false);
|
147
|
const isDefault = ref(false);
|
|
90
|
const createTime = ref<string>('');
|
148
|
const createTime = ref<string>('');
|
|
|
|
149
|
+
|
|
|
|
150
|
+ // 独立规则引擎默认的三项Main不能删除其他能删除
|
|
|
|
151
|
+ const defaultQueueConfiguration = () => {
|
|
|
|
152
|
+ return [
|
|
|
|
153
|
+ {
|
|
|
|
154
|
+ name: 'Main',
|
|
|
|
155
|
+ topic: 'tb_rule_engine.main',
|
|
|
|
156
|
+ pollInterval: 2000,
|
|
|
|
157
|
+ partitions: 1,
|
|
|
|
158
|
+ consumerPerPartition: false,
|
|
|
|
159
|
+ packProcessingTimeout: 10000,
|
|
|
|
160
|
+ submitStrategy: {
|
|
|
|
161
|
+ type: 'BURST',
|
|
|
|
162
|
+ batchSize: 1000,
|
|
|
|
163
|
+ },
|
|
|
|
164
|
+ processingStrategy: {
|
|
|
|
165
|
+ type: 'SKIP_ALL_FAILURES',
|
|
|
|
166
|
+ retries: 3,
|
|
|
|
167
|
+ failurePercentage: 0,
|
|
|
|
168
|
+ pauseBetweenRetries: 3,
|
|
|
|
169
|
+ maxPauseBetweenRetries: 3,
|
|
|
|
170
|
+ },
|
|
|
|
171
|
+ id: buildUUID(),
|
|
|
|
172
|
+ disabled: true,
|
|
|
|
173
|
+ nameOnly: true,
|
|
|
|
174
|
+ additionalInfo: {
|
|
|
|
175
|
+ description: '',
|
|
|
|
176
|
+ customProperties: '',
|
|
|
|
177
|
+ },
|
|
|
|
178
|
+ },
|
|
|
|
179
|
+ {
|
|
|
|
180
|
+ name: 'HighPriority',
|
|
|
|
181
|
+ topic: 'tb_rule_engine.hp',
|
|
|
|
182
|
+ pollInterval: 2000,
|
|
|
|
183
|
+ partitions: 1,
|
|
|
|
184
|
+ consumerPerPartition: false,
|
|
|
|
185
|
+ packProcessingTimeout: 10000,
|
|
|
|
186
|
+ submitStrategy: {
|
|
|
|
187
|
+ type: 'BURST',
|
|
|
|
188
|
+ batchSize: 100,
|
|
|
|
189
|
+ },
|
|
|
|
190
|
+ processingStrategy: {
|
|
|
|
191
|
+ type: 'RETRY_FAILED_AND_TIMED_OUT',
|
|
|
|
192
|
+ retries: 0,
|
|
|
|
193
|
+ failurePercentage: 0,
|
|
|
|
194
|
+ pauseBetweenRetries: 5,
|
|
|
|
195
|
+ maxPauseBetweenRetries: 5,
|
|
|
|
196
|
+ },
|
|
|
|
197
|
+ id: buildUUID(),
|
|
|
|
198
|
+ disabled: true,
|
|
|
|
199
|
+ nameOnly: true,
|
|
|
|
200
|
+ additionalInfo: {
|
|
|
|
201
|
+ description: '',
|
|
|
|
202
|
+ customProperties: '',
|
|
|
|
203
|
+ },
|
|
|
|
204
|
+ },
|
|
|
|
205
|
+ {
|
|
|
|
206
|
+ name: 'SequentialByOriginator',
|
|
|
|
207
|
+ topic: 'tb_rule_engine.sq',
|
|
|
|
208
|
+ pollInterval: 2000,
|
|
|
|
209
|
+ partitions: 1,
|
|
|
|
210
|
+ consumerPerPartition: false,
|
|
|
|
211
|
+ packProcessingTimeout: 10000,
|
|
|
|
212
|
+ submitStrategy: {
|
|
|
|
213
|
+ type: 'SEQUENTIAL_BY_ORIGINATOR',
|
|
|
|
214
|
+ batchSize: 100,
|
|
|
|
215
|
+ },
|
|
|
|
216
|
+ processingStrategy: {
|
|
|
|
217
|
+ type: 'RETRY_FAILED_AND_TIMED_OUT',
|
|
|
|
218
|
+ retries: 3,
|
|
|
|
219
|
+ failurePercentage: 0,
|
|
|
|
220
|
+ pauseBetweenRetries: 5,
|
|
|
|
221
|
+ maxPauseBetweenRetries: 5,
|
|
|
|
222
|
+ },
|
|
|
|
223
|
+ id: buildUUID(),
|
|
|
|
224
|
+ disabled: true,
|
|
|
|
225
|
+ nameOnly: true,
|
|
|
|
226
|
+ additionalInfo: {
|
|
|
|
227
|
+ description: '',
|
|
|
|
228
|
+ customProperties: '',
|
|
|
|
229
|
+ },
|
|
|
|
230
|
+ },
|
|
|
|
231
|
+ ];
|
|
|
|
232
|
+ };
|
|
|
|
233
|
+ const queueConfiguration = ref<any>([]);
|
|
|
|
234
|
+
|
|
91
|
const [registerForm, { validate, resetFields, setFieldsValue, updateSchema }] = useForm({
|
235
|
const [registerForm, { validate, resetFields, setFieldsValue, updateSchema }] = useForm({
|
|
92
|
schemas: formSchema,
|
236
|
schemas: formSchema,
|
|
93
|
showActionButtonGroup: false,
|
237
|
showActionButtonGroup: false,
|
|
94
|
});
|
238
|
});
|
|
95
|
|
239
|
|
|
|
|
240
|
+ // 判断是否启用独立规则引擎
|
|
|
|
241
|
+ const isolatedTbRuleEngine = ref<boolean>(false);
|
|
|
|
242
|
+ const handleCheckbox = (checkedValue) => {
|
|
|
|
243
|
+ const {
|
|
|
|
244
|
+ target: { checked },
|
|
|
|
245
|
+ } = checkedValue || {};
|
|
|
|
246
|
+ isolatedTbRuleEngine.value = checked;
|
|
|
|
247
|
+ if (checked && !unref(isUpdate)) {
|
|
|
|
248
|
+ queueConfiguration.value = defaultQueueConfiguration();
|
|
|
|
249
|
+ nextTick(() => {
|
|
|
|
250
|
+ unref(queueConfiguration).forEach((item, index) => {
|
|
|
|
251
|
+ proxy.$refs.getTenantConfig[index]?.setAllFieldsValue(item);
|
|
|
|
252
|
+ });
|
|
|
|
253
|
+ });
|
|
|
|
254
|
+ }
|
|
|
|
255
|
+ };
|
|
|
|
256
|
+
|
|
|
|
257
|
+ // 删除队列
|
|
|
|
258
|
+ const handleDeleteTenant = (index: number) => {
|
|
|
|
259
|
+ queueConfiguration.value.splice(index, 1);
|
|
|
|
260
|
+ };
|
|
|
|
261
|
+
|
|
|
|
262
|
+ const handleNameChange = async (index: number, name: string) => {
|
|
|
|
263
|
+ const isRepeat = unref(queueConfiguration).every((item) => item.name !== name);
|
|
|
|
264
|
+ nextTick(() => {
|
|
|
|
265
|
+ queueConfiguration.value[index].name = name;
|
|
|
|
266
|
+ });
|
|
|
|
267
|
+ if (!isRepeat) {
|
|
|
|
268
|
+ createMessage.warning('队列名称必须唯一。');
|
|
|
|
269
|
+ proxy.$refs.getTenantConfig[index]?.setFieldsValue({
|
|
|
|
270
|
+ nameOnly: false,
|
|
|
|
271
|
+ topic: 'tb_rule_engine.' + name,
|
|
|
|
272
|
+ });
|
|
|
|
273
|
+ return;
|
|
|
|
274
|
+ }
|
|
|
|
275
|
+ proxy.$refs.getTenantConfig[index]?.setFieldsValue({
|
|
|
|
276
|
+ nameOnly: true,
|
|
|
|
277
|
+ topic: 'tb_rule_engine.' + name,
|
|
|
|
278
|
+ });
|
|
|
|
279
|
+ };
|
|
|
|
280
|
+
|
|
|
|
281
|
+ const handleCreateQueue = () => {
|
|
|
|
282
|
+ const values = {
|
|
|
|
283
|
+ name: '',
|
|
|
|
284
|
+ pollInterval: 2000,
|
|
|
|
285
|
+ partitions: 1,
|
|
|
|
286
|
+ consumerPerPartition: false,
|
|
|
|
287
|
+ packProcessingTimeout: 10000,
|
|
|
|
288
|
+ submitStrategy: {
|
|
|
|
289
|
+ type: 'BURST',
|
|
|
|
290
|
+ batchSize: 1000,
|
|
|
|
291
|
+ },
|
|
|
|
292
|
+ processingStrategy: {
|
|
|
|
293
|
+ type: 'SKIP_ALL_FAILURES',
|
|
|
|
294
|
+ retries: 3,
|
|
|
|
295
|
+ failurePercentage: 0,
|
|
|
|
296
|
+ pauseBetweenRetries: 3,
|
|
|
|
297
|
+ maxPauseBetweenRetries: 3,
|
|
|
|
298
|
+ },
|
|
|
|
299
|
+ disabled: false,
|
|
|
|
300
|
+ id: buildUUID(),
|
|
|
|
301
|
+ nameOnly: true,
|
|
|
|
302
|
+ additionalInfo: {
|
|
|
|
303
|
+ description: '',
|
|
|
|
304
|
+ customProperties: '',
|
|
|
|
305
|
+ },
|
|
|
|
306
|
+ };
|
|
|
|
307
|
+ queueConfiguration.value.push(values);
|
|
|
|
308
|
+ nextTick(() => {
|
|
|
|
309
|
+ proxy.$refs.getTenantConfig[unref(queueConfiguration).length - 1]?.setAllFieldsValue(
|
|
|
|
310
|
+ values
|
|
|
|
311
|
+ );
|
|
|
|
312
|
+ });
|
|
|
|
313
|
+ };
|
|
|
|
314
|
+
|
|
96
|
const funcResetFields = () => {
|
315
|
const funcResetFields = () => {
|
|
97
|
proxy.$refs.getEntity.funcResetFields();
|
316
|
proxy.$refs.getEntity.funcResetFields();
|
|
98
|
proxy.$refs.getRuleEngine.funcResetFields();
|
317
|
proxy.$refs.getRuleEngine.funcResetFields();
|
|
@@ -128,6 +347,28 @@ |
|
@@ -128,6 +347,28 @@ |
|
128
|
await setFieldsValue({
|
347
|
await setFieldsValue({
|
|
129
|
...data.record,
|
348
|
...data.record,
|
|
130
|
});
|
349
|
});
|
|
|
|
350
|
+ const { isolatedTbRuleEngine: dataIsolatedTbRuleEngine } = data.record || {};
|
|
|
|
351
|
+ isolatedTbRuleEngine.value = dataIsolatedTbRuleEngine;
|
|
|
|
352
|
+
|
|
|
|
353
|
+ const oldQueueConfiguration = data.record.profileData.queueConfiguration;
|
|
|
|
354
|
+ //独立规则引擎服务赋值
|
|
|
|
355
|
+ if (dataIsolatedTbRuleEngine && oldQueueConfiguration?.length) {
|
|
|
|
356
|
+ queueConfiguration.value =
|
|
|
|
357
|
+ oldQueueConfiguration.map((item) => {
|
|
|
|
358
|
+ return {
|
|
|
|
359
|
+ ...item,
|
|
|
|
360
|
+ id: buildUUID(),
|
|
|
|
361
|
+ disabled: true,
|
|
|
|
362
|
+ nameOnly: true,
|
|
|
|
363
|
+ };
|
|
|
|
364
|
+ }) || defaultQueueConfiguration();
|
|
|
|
365
|
+ nextTick(() => {
|
|
|
|
366
|
+ unref(queueConfiguration).forEach((item, index) => {
|
|
|
|
367
|
+ proxy.$refs.getTenantConfig[index]?.setAllFieldsValue(item);
|
|
|
|
368
|
+ });
|
|
|
|
369
|
+ });
|
|
|
|
370
|
+ }
|
|
|
|
371
|
+
|
|
131
|
createTime.value = data.record.createdTime;
|
372
|
createTime.value = data.record.createdTime;
|
|
132
|
updateStatusSchema(true);
|
373
|
updateStatusSchema(true);
|
|
133
|
}
|
374
|
}
|
|
@@ -142,12 +383,12 @@ |
|
@@ -142,12 +383,12 @@ |
|
142
|
disabled: status,
|
383
|
disabled: status,
|
|
143
|
},
|
384
|
},
|
|
144
|
},
|
385
|
},
|
|
145
|
- {
|
|
|
|
146
|
- field: 'isolatedTbCore',
|
|
|
|
147
|
- componentProps: {
|
|
|
|
148
|
- disabled: status,
|
|
|
|
149
|
- },
|
|
|
|
150
|
- },
|
386
|
+ // {
|
|
|
|
387
|
+ // field: 'isolatedTbRuleEngine',
|
|
|
|
388
|
+ // componentProps: {
|
|
|
|
389
|
+ // disabled: status,
|
|
|
|
390
|
+ // },
|
|
|
|
391
|
+ // },
|
|
151
|
]);
|
392
|
]);
|
|
152
|
};
|
393
|
};
|
|
153
|
|
394
|
|
|
@@ -205,15 +446,52 @@ |
|
@@ -205,15 +446,52 @@ |
|
205
|
try {
|
446
|
try {
|
|
206
|
if (!unref(isUpdate)) {
|
447
|
if (!unref(isUpdate)) {
|
|
207
|
await getAllFieldsFunc();
|
448
|
await getAllFieldsFunc();
|
|
208
|
- // return;
|
|
|
|
209
|
- await saveTenantProfileApi({ ...postAllData, isolatedTbRuleEngine: null });
|
449
|
+ const getTenantConfigRefs = proxy.$refs.getTenantConfig;
|
|
|
|
450
|
+ const queueConfigValues: any = [];
|
|
|
|
451
|
+ for (let i = 0; i < getTenantConfigRefs?.length; i++) {
|
|
|
|
452
|
+ await proxy.$refs.getTenantConfig[i].validateAll();
|
|
|
|
453
|
+ const values = proxy.$refs.getTenantConfig[i].getAllFieldsValue();
|
|
|
|
454
|
+ queueConfigValues.push({ ...values, nameOnly: undefined });
|
|
|
|
455
|
+ const { nameOnly } = values || {};
|
|
|
|
456
|
+ if (!nameOnly) {
|
|
|
|
457
|
+ createMessage.success('队列名称必须唯一。');
|
|
|
|
458
|
+ return false;
|
|
|
|
459
|
+ }
|
|
|
|
460
|
+ }
|
|
|
|
461
|
+ const {
|
|
|
|
462
|
+ profileData: { configuration },
|
|
|
|
463
|
+ } = postAllData || {};
|
|
|
|
464
|
+ await saveTenantProfileApi({
|
|
|
|
465
|
+ ...postAllData,
|
|
|
|
466
|
+ profileData: { configuration, queueConfiguration: queueConfigValues },
|
|
|
|
467
|
+ });
|
|
210
|
createMessage.success('租户配置新增成功');
|
468
|
createMessage.success('租户配置新增成功');
|
|
|
|
469
|
+
|
|
211
|
closeDrawer();
|
470
|
closeDrawer();
|
|
212
|
emit('success');
|
471
|
emit('success');
|
|
213
|
resetFields();
|
472
|
resetFields();
|
|
214
|
} else {
|
473
|
} else {
|
|
215
|
await getAllFieldsFunc(true);
|
474
|
await getAllFieldsFunc(true);
|
|
216
|
- await saveTenantProfileApi({ ...postAllData, isolatedTbRuleEngine: null });
|
475
|
+ const getTenantConfigRefs = proxy.$refs.getTenantConfig;
|
|
|
|
476
|
+ // proxy.$refs.getTenantConfig[index].getAllFieldsValue();
|
|
|
|
477
|
+ const queueConfigValues: any = [];
|
|
|
|
478
|
+ for (let i = 0; i < getTenantConfigRefs?.length; i++) {
|
|
|
|
479
|
+ await proxy.$refs.getTenantConfig[i].validateAll();
|
|
|
|
480
|
+ const values = proxy.$refs.getTenantConfig[i].getAllFieldsValue();
|
|
|
|
481
|
+ queueConfigValues.push({ ...values, nameOnly: undefined });
|
|
|
|
482
|
+ const { nameOnly } = values || {};
|
|
|
|
483
|
+ if (!nameOnly) {
|
|
|
|
484
|
+ createMessage.warning('队列名称必须唯一。');
|
|
|
|
485
|
+ return false;
|
|
|
|
486
|
+ }
|
|
|
|
487
|
+ }
|
|
|
|
488
|
+ const {
|
|
|
|
489
|
+ profileData: { configuration },
|
|
|
|
490
|
+ } = postAllData || {};
|
|
|
|
491
|
+ await saveTenantProfileApi({
|
|
|
|
492
|
+ ...postAllData,
|
|
|
|
493
|
+ profileData: { configuration, queueConfiguration: queueConfigValues },
|
|
|
|
494
|
+ });
|
|
217
|
createMessage.success('租户配置编辑成功');
|
495
|
createMessage.success('租户配置编辑成功');
|
|
218
|
closeDrawer();
|
496
|
closeDrawer();
|
|
219
|
emit('success');
|
497
|
emit('success');
|
|
@@ -239,6 +517,13 @@ |
|
@@ -239,6 +517,13 @@ |
|
239
|
getOta,
|
517
|
getOta,
|
|
240
|
getWs,
|
518
|
getWs,
|
|
241
|
getSpeed,
|
519
|
getSpeed,
|
|
|
|
520
|
+ handleCheckbox,
|
|
|
|
521
|
+ isolatedTbRuleEngine,
|
|
|
|
522
|
+ handleDeleteTenant,
|
|
|
|
523
|
+ queueConfiguration,
|
|
|
|
524
|
+ getTenantConfig,
|
|
|
|
525
|
+ handleNameChange,
|
|
|
|
526
|
+ handleCreateQueue,
|
|
242
|
};
|
527
|
};
|
|
243
|
},
|
528
|
},
|
|
244
|
});
|
529
|
});
|