invoiceninja/app/Http/Requests/User/ReconfirmUserRequest.php

29 lines
658 B
PHP
Raw Permalink Normal View History

2021-02-20 11:45:20 +11:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-02-20 11:45:20 +11:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2021-02-20 11:45:20 +11:00
*/
namespace App\Http\Requests\User;
use App\Http\Requests\Request;
use App\Models\User;
class ReconfirmUserRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
2021-03-16 07:35:19 +11:00
return auth()->user()->id == $this->user->id || auth()->user()->isAdmin();
2021-02-20 11:45:20 +11:00
}
}