mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 08:44:46 +02:00
27 lines
606 B
PHP
27 lines
606 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Client\Servers\Files;
|
|
|
|
use App\Models\Permission;
|
|
use App\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
class CompressFilesRequest extends ClientApiRequest
|
|
{
|
|
/**
|
|
* Checks that the authenticated user is allowed to create archives for this server.
|
|
*/
|
|
public function permission(): string
|
|
{
|
|
return Permission::ACTION_FILE_ARCHIVE;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'root' => 'sometimes|nullable|string',
|
|
'files' => 'required|array',
|
|
'files.*' => 'string',
|
|
];
|
|
}
|
|
}
|