Add guest push notifications and queue alerts
This commit is contained in:
13
config/push.php
Normal file
13
config/push.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'enabled' => (bool) env('PUSH_ENABLED', false),
|
||||
|
||||
'ttl' => (int) env('PUSH_TTL', 600),
|
||||
|
||||
'vapid' => [
|
||||
'public_key' => env('PUSH_VAPID_PUBLIC_KEY'),
|
||||
'private_key' => env('PUSH_VAPID_PRIVATE_KEY'),
|
||||
'subject' => env('PUSH_VAPID_SUBJECT', env('APP_URL', 'mailto:support@example.com')),
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user