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/SubscribeWebhook.php
2020-04-29 23:58:18 +02:00

33 lines
642 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Support\Facades\Auth;
use Illuminate\Foundation\Http\FormRequest;
class SubscribeWebhook 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",
"mode" => "required|in:subscribe,unsubscribe"
];
}
}