Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BSI compliant password standards #617

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions public/js/pimcore/settings/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,22 @@ pimcore.settings.system = Class.create({
}
}]
},
{
xtype: 'fieldset',
title: t('password_security'),
collapsible: true,
collapsed: true,
autoHeight: true,
labelWidth: 150,
defaultType: 'textfield',
defaults: {width: 300},
items: [{
boxLabel: t('bsi_password_standards'),
xtype: "checkbox",
name: "password.bsi_standards",
checked: this.getValue("password.bsi_standards")
}]
},
{
xtype: 'fieldset',
title: "Debug",
Expand Down
1 change: 1 addition & 0 deletions src/Controller/Admin/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ public function getSystemAction(Request $request, SystemSettingsConfig $config):

$valueArray = [
'general' => $config['general'],
'password' => $config['password'],
'documents' => $config['documents'],
'assets' => $config['assets'],
'objects' => $config['objects'],
Expand Down
2 changes: 2 additions & 0 deletions translations/admin_ext.de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -712,4 +712,6 @@ options_provider_type_configure: Configure
options_provider_type_select_options: Select Options
options_provider_type_class: Options Provider
selectoptions: Select Options
password_security: Passwort Sicherheit
bsi_password_standards: BSI-konforme Kennwortstandards
...
2 changes: 2 additions & 0 deletions translations/admin_ext.en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -714,3 +714,5 @@ booleanSelect: Boolean Select
quantityValue: Quantity Value
inputQuantityValue: Input Quantity Value
calculatedValue: Calculated Value
password_security: Password security
bsi_password_standards: BSI compliant password standards
Loading