Fixes bug introduced during admin rewrite that broke server creation

This commit is contained in:
Dane Everitt 2017-03-16 21:11:15 -04:00
parent be60299089
commit 4ad09c5435
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 60 additions and 50 deletions

View file

@ -11,10 +11,10 @@ return [
| author of custom services, and make upgrades easier by identifying
| standard Pterodactyl shipped services.
*/
'service' => [
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
'author' => env('SERVICE_AUTHOR'),
],
'service' => [
'core' => 'ptrdctyl-v040-11e6-8b77-86f30ca893d3',
'author' => env('SERVICE_AUTHOR'),
],
/*
|--------------------------------------------------------------------------
@ -24,10 +24,22 @@ return [
| Certain pagination result counts can be configured here and will take
| effect globally.
*/
'paginate' => [
'frontend' => [
'servers' => 15,
],
],
'paginate' => [
'frontend' => [
'servers' => 15,
],
],
/*
|--------------------------------------------------------------------------
| Guzzle Connections
|--------------------------------------------------------------------------
|
| Configure the timeout to be used for Guzzle connections here.
*/
'guzzle' => [
'timeout' => env('GUZZLE_TIMEOUT', 5),
'connect_timeout' => env('GUZZLE_CONNECT_TIMEOUT', 3),
],
];