diff --git a/src/components/notifications/Apprise.vue b/src/components/notifications/Apprise.vue index 000ce916..de3fe52b 100644 --- a/src/components/notifications/Apprise.vue +++ b/src/components/notifications/Apprise.vue @@ -22,7 +22,6 @@ export default { data() { return { - name: "apprise", appriseInstalled: false } }, diff --git a/src/components/notifications/Discord.vue b/src/components/notifications/Discord.vue index 3d4869ed..c45a5262 100644 --- a/src/components/notifications/Discord.vue +++ b/src/components/notifications/Discord.vue @@ -18,13 +18,3 @@ - - diff --git a/src/components/notifications/Gotify.vue b/src/components/notifications/Gotify.vue index 600b5e48..737a297a 100644 --- a/src/components/notifications/Gotify.vue +++ b/src/components/notifications/Gotify.vue @@ -23,10 +23,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "gotify", - } - }, } diff --git a/src/components/notifications/Line.vue b/src/components/notifications/Line.vue index 2468875b..7d5312c3 100644 --- a/src/components/notifications/Line.vue +++ b/src/components/notifications/Line.vue @@ -25,10 +25,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "line", - } - }, } diff --git a/src/components/notifications/LunaSea.vue b/src/components/notifications/LunaSea.vue index efa103fb..1511f411 100644 --- a/src/components/notifications/LunaSea.vue +++ b/src/components/notifications/LunaSea.vue @@ -7,13 +7,3 @@ - - diff --git a/src/components/notifications/Mattermost.vue b/src/components/notifications/Mattermost.vue index 79ff23bb..3e1a7bdc 100644 --- a/src/components/notifications/Mattermost.vue +++ b/src/components/notifications/Mattermost.vue @@ -30,13 +30,3 @@ - - diff --git a/src/components/notifications/Octopush.vue b/src/components/notifications/Octopush.vue index 94c5783b..10fb6df7 100644 --- a/src/components/notifications/Octopush.vue +++ b/src/components/notifications/Octopush.vue @@ -36,10 +36,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "octopush", - } - }, } diff --git a/src/components/notifications/Pushbullet.vue b/src/components/notifications/Pushbullet.vue index 8eddb9fb..2c805e0a 100644 --- a/src/components/notifications/Pushbullet.vue +++ b/src/components/notifications/Pushbullet.vue @@ -16,10 +16,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "pushbullet", - } - }, } diff --git a/src/components/notifications/Pushover.vue b/src/components/notifications/Pushover.vue index ff29a406..ae836b5c 100644 --- a/src/components/notifications/Pushover.vue +++ b/src/components/notifications/Pushover.vue @@ -63,10 +63,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "pushover", - } - }, } diff --git a/src/components/notifications/Pushy.vue b/src/components/notifications/Pushy.vue index 752f1695..64e4ef9c 100644 --- a/src/components/notifications/Pushy.vue +++ b/src/components/notifications/Pushy.vue @@ -22,10 +22,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "pushy", - } - }, } diff --git a/src/components/notifications/RocketChat.vue b/src/components/notifications/RocketChat.vue index 50c21b20..0776a154 100644 --- a/src/components/notifications/RocketChat.vue +++ b/src/components/notifications/RocketChat.vue @@ -27,13 +27,3 @@ - - diff --git a/src/components/notifications/SMTP.vue b/src/components/notifications/SMTP.vue index 47661aa5..d2d1e9df 100644 --- a/src/components/notifications/SMTP.vue +++ b/src/components/notifications/SMTP.vue @@ -66,10 +66,5 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "smtp", - } - }, } diff --git a/src/components/notifications/Signal.vue b/src/components/notifications/Signal.vue index f68b6dfe..8598d07f 100644 --- a/src/components/notifications/Signal.vue +++ b/src/components/notifications/Signal.vue @@ -30,13 +30,3 @@ - - diff --git a/src/components/notifications/Slack.vue b/src/components/notifications/Slack.vue index c1b4f7c0..1ec2cdfc 100644 --- a/src/components/notifications/Slack.vue +++ b/src/components/notifications/Slack.vue @@ -27,13 +27,3 @@ - - diff --git a/src/components/notifications/Teams.vue b/src/components/notifications/Teams.vue index 748bf7ad..45ba26c8 100644 --- a/src/components/notifications/Teams.vue +++ b/src/components/notifications/Teams.vue @@ -17,13 +17,3 @@ - - diff --git a/src/components/notifications/Telegram.vue b/src/components/notifications/Telegram.vue index 9be1e004..a59c804a 100644 --- a/src/components/notifications/Telegram.vue +++ b/src/components/notifications/Telegram.vue @@ -47,11 +47,6 @@ export default { components: { HiddenInput, }, - data() { - return { - name: "telegram", - } - }, computed: { telegramGetUpdatesURL() { let token = "" @@ -62,9 +57,6 @@ export default { return `https://api.telegram.org/bot${token}/getUpdates`; }, - }, - mounted() { - }, methods: { async autoGetTelegramChatID() { diff --git a/src/components/notifications/Webhook.vue b/src/components/notifications/Webhook.vue index 002a2d50..1554a83d 100644 --- a/src/components/notifications/Webhook.vue +++ b/src/components/notifications/Webhook.vue @@ -21,17 +21,3 @@ - - - - diff --git a/src/components/notifications/index.js b/src/components/notifications/index.js index 50716f14..52d4d44d 100644 --- a/src/components/notifications/index.js +++ b/src/components/notifications/index.js @@ -17,7 +17,7 @@ import Line from "./Line.vue"; import Mattermost from "./Mattermost.vue"; /** - * manage all notification form. + * Manage all notification form. * * @type { Record } */