cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
36 lines
865 B
PHP
36 lines
865 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Application\Locations;
|
|
|
|
use Pterodactyl\Models\Location;
|
|
use Pterodactyl\Services\Acl\Api\AdminAcl;
|
|
use Pterodactyl\Http\Requests\Api\Application\ApplicationApiRequest;
|
|
|
|
class StoreLocationRequest extends ApplicationApiRequest
|
|
{
|
|
protected ?string $resource = AdminAcl::RESOURCE_LOCATIONS;
|
|
|
|
protected int $permission = AdminAcl::WRITE;
|
|
|
|
/**
|
|
* Rules to validate the request against.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return collect(Location::getRules())->only([
|
|
'long',
|
|
'short',
|
|
])->toArray();
|
|
}
|
|
|
|
/**
|
|
* Rename fields to be more clear in error messages.
|
|
*/
|
|
public function attributes(): array
|
|
{
|
|
return [
|
|
'long' => 'Location Description',
|
|
'short' => 'Location Identifier',
|
|
];
|
|
}
|
|
}
|