mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			716 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			716 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Requests\Api\Client\Servers\Databases;
 | 
						|
 | 
						|
use Pterodactyl\Models\Server;
 | 
						|
use Pterodactyl\Models\Database;
 | 
						|
use Pterodactyl\Models\Permission;
 | 
						|
use Pterodactyl\Contracts\Http\ClientPermissionsRequest;
 | 
						|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
 | 
						|
 | 
						|
class DeleteDatabaseRequest extends ClientApiRequest implements ClientPermissionsRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function permission(): string
 | 
						|
    {
 | 
						|
        return Permission::ACTION_DATABASE_DELETE;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function resourceExists(): bool
 | 
						|
    {
 | 
						|
        return $this->getModel(Server::class)->id === $this->getModel(Database::class)->server_id;
 | 
						|
    }
 | 
						|
}
 |