mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
- Added Discord alert webhook URL to .env.example - Created ContactCategory enum with humanReadable method - Implemented ContactSubmissionRequest form request - Added ContactSubmission model with fillable and casts properties - Included configurations for Discord alerts and honeypot protection
17 lines
386 B
PHP
17 lines
386 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* The webhook URLs that we'll use to send a message to Discord.
|
|
*/
|
|
'webhook_urls' => [
|
|
'default' => env('DISCORD_ALERT_WEBHOOK'),
|
|
],
|
|
|
|
/*
|
|
* This job will send the message to Discord. You can extend this
|
|
* job to set timeouts, retries, etc...
|
|
*/
|
|
'job' => Spatie\DiscordAlerts\Jobs\SendToDiscordChannelJob::class,
|
|
];
|