mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
30 lines
566 B
PHP
30 lines
566 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests\API;
|
||
|
|
||
|
class UserUpdateRequest extends Request
|
||
|
{
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
return auth()->user()->is_admin;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
'name' => 'required',
|
||
|
'email' => 'required|email|unique:users,email,'.$this->route('user'),
|
||
|
];
|
||
|
}
|
||
|
}
|