33 lines
		
	
	
		
			883 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			883 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Requests\Api\Client\Servers\Settings;
 | |
| 
 | |
| use App\Models\Server;
 | |
| use App\Models\Permission;
 | |
| use App\Contracts\Http\ClientPermissionsRequest;
 | |
| use App\Http\Requests\Api\Client\ClientApiRequest;
 | |
| 
 | |
| class RenameServerRequest extends ClientApiRequest implements ClientPermissionsRequest
 | |
| {
 | |
|     /**
 | |
|      * Returns the permissions string indicating which permission should be used to
 | |
|      * validate that the authenticated user has permission to perform this action against
 | |
|      * the given resource (server).
 | |
|      */
 | |
|     public function permission(): string
 | |
|     {
 | |
|         return Permission::ACTION_SETTINGS_RENAME;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * The rules to apply when validating this request.
 | |
|      */
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             'name' => Server::getRules()['name'],
 | |
|             'description' => 'string|nullable',
 | |
|         ];
 | |
|     }
 | |
| }
 | 
