Files
UNIT3D-Community-Edition/app/Http/Requests/Staff/ApproveApplicationRequest.php
Roardom c55de708e0 refactor: application controller
Use form requests and mass assignment.
2023-07-07 00:26:17 +00:00

42 lines
1.1 KiB
PHP

<?php
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author Roardom <roardom@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
namespace App\Http\Requests\Staff;
use App\Rules\EmailBlacklist;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class ApproveApplicationRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'status' => 1,
'email' => [
'required',
'string',
'email',
'max:70',
'unique:invites',
'unique:users',
Rule::when(config('email-blacklist.enabled'), fn () => new EmailBlacklist()),
],
'approve' => 'required',
];
}
}