Simple fix of a checkbox

This commit is contained in:
Ferks-FK 2023-01-22 19:58:28 +00:00
parent c32bfc1c8a
commit 977d2ddd18
4 changed files with 5240 additions and 131 deletions

View file

@ -50,6 +50,7 @@ class System
'pterodactyl-admin-api-key' => 'required|string', 'pterodactyl-admin-api-key' => 'required|string',
'enable-upgrades' => 'string', 'enable-upgrades' => 'string',
'enable-disable-servers' => 'string', 'enable-disable-servers' => 'string',
'enable-disable-new-users' => 'string',
'show-imprint' => 'string', 'show-imprint' => 'string',
'show-privacy' => 'string', 'show-privacy' => 'string',
'show-tos' => 'string', 'show-tos' => 'string',

View file

@ -545,7 +545,7 @@ class SettingsSeeder extends Seeder
Settings::firstOrCreate([ Settings::firstOrCreate([
'key' => 'SETTINGS::SYSTEM:CREATION_OF_NEW_USERS', 'key' => 'SETTINGS::SYSTEM:CREATION_OF_NEW_USERS',
], [ ], [
'value' => 'false', 'value' => 'true',
'type' => 'boolean', 'type' => 'boolean',
'description' => 'Enable/disable the creation of new users', 'description' => 'Enable/disable the creation of new users',
]); ]);

5364
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -26,6 +26,8 @@
"sass-loader": "^10.1.1" "sass-loader": "^10.1.1"
}, },
"dependencies": { "dependencies": {
"tinymce": "^6.3.1" "laravel-vite-plugin": "^0.7.3",
"tinymce": "^6.3.1",
"vite": "^4.0.4"
} }
} }