mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 00:34:44 +02:00

* Allow user to choose `archive` name in `FileManager` * Rollback `file.compress` activity translation
28 lines
657 B
PHP
28 lines
657 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',
|
|
'name' => 'sometimes|nullable|string',
|
|
];
|
|
}
|
|
}
|