33 lines
682 B
PHP
33 lines
682 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AddWebhookAction extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return Auth::check();
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
"type" => "required|in:follow,stream,subscription",
|
|
"discord_hook_url" => "required|url|starts_with:https://discordapp.com/api/webhooks/"
|
|
];
|
|
}
|
|
}
|