1
0
This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ttv-streamkit/app/Http/Requests/AddWebhookAction.php
2020-04-29 23:58:18 +02:00

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/"
];
}
}