fix: 🐛 Description of settings

This commit is contained in:
IceToast 2023-06-25 14:30:03 +02:00
parent b87f3ce82e
commit 8fe6ad0d52
2 changed files with 5 additions and 5 deletions

View file

@ -45,12 +45,12 @@ class ServerSettings extends Settings
'creation_enabled' => [
'label' => 'Creation Enabled',
'type' => 'boolean',
'description' => 'Whether or not users can create servers.',
'description' => 'Enable the user server creation.',
],
'enable_upgrade' => [
'label' => 'Enable Upgrade',
'label' => 'Server Upgrade Enabled',
'type' => 'boolean',
'description' => 'Whether or not users can upgrade their servers.',
'description' => 'Enable the server upgrade feature.',
],
];
}

View file

@ -106,14 +106,14 @@ class UserSettings extends Settings
'description' => 'The amount of servers a user can create after they verify their email.',
],
'register_ip_check' => [
'label' => 'Register IP Check',
'label' => 'Register IP Check Enabled',
'type' => 'boolean',
'description' => 'Check if the IP a user is registering from is already in use.',
],
'creation_enabled' => [
'label' => 'Creation Enabled',
'type' => 'boolean',
'description' => 'Whether or not users can create servers.',
'description' => 'Enable the user registration.',
],
];
}