mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 14:06:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 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 GetAllocationsRequest extends ApplicationApiRequest
 | |
| {
 | |
|     protected ?string $resource = Allocation::RESOURCE_NAME;
 | |
| 
 | |
|     protected int $permission = AdminAcl::READ;
 | |
| }
 | 
