mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			525 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			525 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Requests\Base;
 | 
						|
 | 
						|
use Pterodactyl\Http\Requests\FrontendUserFormRequest;
 | 
						|
 | 
						|
class StoreAccountKeyRequest extends FrontendUserFormRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Rules to validate the request input against before storing
 | 
						|
     * an account API key.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'memo' => 'required|nullable|string|max:500',
 | 
						|
            'allowed_ips' => 'present',
 | 
						|
            'allowed_ips.*' => 'sometimes|string',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |