mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-04 12:29:47 +00:00
Expand settings for notifications.
This commit is contained in:
@@ -24,8 +24,8 @@ return [
|
||||
'channels' => [
|
||||
'email' => ['enabled' => true, 'ui_configurable' => 0,],
|
||||
'slack' => ['enabled' => true, 'ui_configurable' => 1,],
|
||||
'ntfy' => ['enabled' => true, 'ui_configurable' => 0,],
|
||||
'pushover' => ['enabled' => true, 'ui_configurable' => 0,],
|
||||
'ntfy' => ['enabled' => true, 'ui_configurable' => 1,],
|
||||
'pushover' => ['enabled' => true, 'ui_configurable' => 1,],
|
||||
'gotify' => ['enabled' => false, 'ui_configurable' => 0,],
|
||||
'pushbullet' => ['enabled' => false, 'ui_configurable' => 0,],
|
||||
],
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
// config for Wijourdil/NtfyNotificationChannel
|
||||
return [
|
||||
|
||||
'server' => env('NTFY_SERVER', 'https://ntfy.sh'),
|
||||
'topic' => env('NTFY_TOPIC', ''),
|
||||
'server' => 'https://ntfy.sh',
|
||||
'topic' => '',
|
||||
'authentication' => [
|
||||
'enabled' => (bool) env('NTFY_AUTH_ENABLED', false),
|
||||
'username' => env('NTFY_AUTH_USERNAME', ''),
|
||||
'password' => env('NTFY_AUTH_PASSWORD', ''),
|
||||
'enabled' => false,
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -183,6 +183,7 @@ return [
|
||||
'file',
|
||||
'staticText',
|
||||
'password',
|
||||
'passwordWithValue',
|
||||
'nonSelectableAmount',
|
||||
'number',
|
||||
'amountNoCurrency',
|
||||
|
||||
Reference in New Issue
Block a user