Skip to content

Commit

Permalink
[Feature] Add App Name to notifications (#1884)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvg93 authored Dec 5, 2024
1 parent 5fbf5a6 commit f259373
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion resources/views/discord/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Completed - #{{ $id }}**

A new speedtest was completed using **{{ $service }}**.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}**.

- **Server name:** {{ $serverName }}
- **Server ID:** {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/discord/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Threshold Breached - #{{ $id }}**

A new speedtest was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- **{{ $item['name'] }}** {{ $item['threshold'] }}: {{ $item['value'] }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/gotify/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Completed - #{{ $id }}**

A new speedtest was completed using **{{ $service }}**.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}**.

- **Server name:** {{ $serverName }}
- **Server ID:** {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/gotify/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Threshold Breached - #{{ $id }}**

A new speedtest was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- {{ $item['name'] }} {{ $item['threshold'] }}: **{{ $item['value'] }}**
Expand Down
2 changes: 1 addition & 1 deletion resources/views/ntfy/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Speedtest Completed - #{{ $id }}

A new speedtest was completed using {{ $service }}.
A new speedtest on {{ config('app.name') }} was completed using {{ $service }}.

Server name: {{ $serverName }}
Server ID: {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/ntfy/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Speedtest Threshold Breached - #{{ $id }}

A new speedtest was completed using {{ $service }} on {{ $isp }} but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- {{ $item['name'] }} {{ $item['threshold'] }}: {{ $item['value'] }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/pushover/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Speedtest Completed - #{{ $id }}

A new speedtest was completed using {{ $service }}.
A new speedtest on {{ config('app.name') }} was completed using {{ $service }}.

- Server name: {{ $serverName }}
- Server ID: {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/pushover/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Speedtest Threshold Breached - #{{ $id }}

A new speedtest was completed using {{ $service }} on {{ $isp }} but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- {{ $item['name'] }} {{ $item['threshold'] }}: {{ $item['value'] }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/slack/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*Speedtest Completed - #{{ $id }}*

A new speedtest was completed using *{{ $service }}*.
A new speedtest on *{{ config('app.name') }}* was completed using *{{ $service }}*.

- *Server name:* {{ $serverName }}
- *Server ID:* {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/slack/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Threshold Breached - #{{ $id }}**

A new speedtest was completed using *{{ $service }}* on *{{ $isp }}* but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- *{{ $item['name'] }}* {{ $item['threshold'] }}: {{ $item['value'] }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/telegram/speedtest-completed.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*Speedtest Completed - #{{ $id }}*

A new speedtest was completed using *{{ $service }}*.
A new speedtest on *{{ config('app.name') }}* was completed using *{{ $service }}*.

- *Server name:* {{ $serverName }}
- *Server ID:* {{ $serverId }}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/telegram/speedtest-threshold.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Speedtest Threshold Breached - #{{ $id }}**

A new speedtest was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.
A new speedtest on **{{ config('app.name') }}** was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.

@foreach ($metrics as $item)
- **{{ $item['name'] }}** {{ $item['threshold'] }}: {{ $item['value'] }}
Expand Down

0 comments on commit f259373

Please sign in to comment.