70db461075
Changes the way service files are stored and allows for much easier updates in the future that won’t affect custom services. Also stores more configurations in the database to make life easier for everyone.
18 lines
478 B
PHP
18 lines
478 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Service Author
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Each panel installation is assigned a unique UUID to identify the
|
|
| author of custom services, and make upgrades easier by identifying
|
|
| standard Pterodactyl shipped services.
|
|
*/
|
|
'service' => [
|
|
'author' => env('SERVICE_AUTHOR'),
|
|
],
|
|
|
|
];
|