mirror of
https://github.com/pelican-dev/panel.git
synced 2025-10-30 19:06:52 +01:00
15 lines
364 B
PHP
15 lines
364 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\Application\Allocations;
|
|
|
|
use App\Http\Requests\Api\Application\ApplicationApiRequest;
|
|
use App\Models\Allocation;
|
|
use App\Services\Acl\Api\AdminAcl;
|
|
|
|
class DeleteAllocationRequest extends ApplicationApiRequest
|
|
{
|
|
protected ?string $resource = Allocation::RESOURCE_NAME;
|
|
|
|
protected int $permission = AdminAcl::WRITE;
|
|
}
|