From 7c1cfe7e25957fc915fc9790bdf78887295b1fee Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Tue, 16 May 2023 09:03:25 +0000 Subject: Add SNMP alerts page and test hooks This page will be included in Configuration section of the primary navigation. The user will be able to delete and add alert destination. Change-Id: I396d19a54ea11724f2c5aec67e20ba9abff947d3 Signed-off-by: Konstantin Aladyshev --- .../Settings/SnmpAlerts/ModalAddDestination.vue | 145 +++++++++++ src/views/Settings/SnmpAlerts/SnmpAlerts.vue | 274 +++++++++++++++++++++ src/views/Settings/SnmpAlerts/index.js | 2 + 3 files changed, 421 insertions(+) create mode 100644 src/views/Settings/SnmpAlerts/ModalAddDestination.vue create mode 100644 src/views/Settings/SnmpAlerts/SnmpAlerts.vue create mode 100644 src/views/Settings/SnmpAlerts/index.js (limited to 'src/views/Settings/SnmpAlerts') diff --git a/src/views/Settings/SnmpAlerts/ModalAddDestination.vue b/src/views/Settings/SnmpAlerts/ModalAddDestination.vue new file mode 100644 index 00000000..9637652b --- /dev/null +++ b/src/views/Settings/SnmpAlerts/ModalAddDestination.vue @@ -0,0 +1,145 @@ + + + diff --git a/src/views/Settings/SnmpAlerts/SnmpAlerts.vue b/src/views/Settings/SnmpAlerts/SnmpAlerts.vue new file mode 100644 index 00000000..8a9b8e73 --- /dev/null +++ b/src/views/Settings/SnmpAlerts/SnmpAlerts.vue @@ -0,0 +1,274 @@ + + + diff --git a/src/views/Settings/SnmpAlerts/index.js b/src/views/Settings/SnmpAlerts/index.js new file mode 100644 index 00000000..f27ed4aa --- /dev/null +++ b/src/views/Settings/SnmpAlerts/index.js @@ -0,0 +1,2 @@ +import SnmpAlerts from './SnmpAlerts.vue'; +export default SnmpAlerts; -- cgit v1.2.3