mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Updated config
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
dd6d040da5
commit
6b4c71f966
|
@ -137,6 +137,11 @@ return [
|
||||||
|
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS', null),
|
'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS', null),
|
||||||
|
|
||||||
|
'from' => [
|
||||||
|
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||||
|
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
'slack' => [
|
'slack' => [
|
||||||
|
@ -152,6 +157,20 @@ return [
|
||||||
'icon' => null,
|
'icon' => null,
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'discord' => [
|
||||||
|
'webhook_url' => '',
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If this is an empty string, the name field on the webhook will be used.
|
||||||
|
*/
|
||||||
|
'username' => '',
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If this is an empty string, the avatar on the webhook will be used.
|
||||||
|
*/
|
||||||
|
'avatar_url' => '',
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue