firefly-iii/config/ntfy-notification-channel.php

15 lines
362 B
PHP
Raw Normal View History

2024-12-08 23:27:37 -06:00
<?php
// config for Wijourdil/NtfyNotificationChannel
return [
'server' => env('NTFY_SERVER', 'https://ntfy.sh'),
'topic' => env('NTFY_TOPIC', ''),
'authentication' => [
'enabled' => (bool) env('NTFY_AUTH_ENABLED', false),
'username' => env('NTFY_AUTH_USERNAME', ''),
'password' => env('NTFY_AUTH_PASSWORD', ''),
],
];