Simple fix of a checkbox
This commit is contained in:
parent
c32bfc1c8a
commit
977d2ddd18
4 changed files with 5240 additions and 131 deletions
|
@ -50,6 +50,7 @@ class System
|
|||
'pterodactyl-admin-api-key' => 'required|string',
|
||||
'enable-upgrades' => 'string',
|
||||
'enable-disable-servers' => 'string',
|
||||
'enable-disable-new-users' => 'string',
|
||||
'show-imprint' => 'string',
|
||||
'show-privacy' => 'string',
|
||||
'show-tos' => 'string',
|
||||
|
|
|
@ -545,7 +545,7 @@ class SettingsSeeder extends Seeder
|
|||
Settings::firstOrCreate([
|
||||
'key' => 'SETTINGS::SYSTEM:CREATION_OF_NEW_USERS',
|
||||
], [
|
||||
'value' => 'false',
|
||||
'value' => 'true',
|
||||
'type' => 'boolean',
|
||||
'description' => 'Enable/disable the creation of new users',
|
||||
]);
|
||||
|
|
5364
package-lock.json
generated
5364
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -26,6 +26,8 @@
|
|||
"sass-loader": "^10.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"tinymce": "^6.3.1"
|
||||
"laravel-vite-plugin": "^0.7.3",
|
||||
"tinymce": "^6.3.1",
|
||||
"vite": "^4.0.4"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue