mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-19 08:48:41 +00:00
81 lines
2.0 KiB
Markdown
81 lines
2.0 KiB
Markdown
# Settings
|
|
|
|
## General
|
|
|
|
In the admin module under `General` the global settings can be set.
|
|
|
|
### Organization
|
|
|
|
Default unit.
|
|
|
|

|
|
|
|
### Security
|
|
|
|
In the security section it's possible to define and modify the global security settings. These settings will be used for every user.
|
|
|
|

|
|
|
|
#### Password Regex
|
|
|
|
In this field the password structure can be defined that is required by every account. Examples are:
|
|
|
|
##### Password Example 1
|
|
|
|
At least 8 characters including at least one numeric value, one lower letter, one upper letter, one special char
|
|
|
|
```
|
|
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[.]{8,}
|
|
```
|
|
|
|
##### Password Example 2
|
|
|
|
At least 8 characters including at least one numeric value, one upper letter, one special char
|
|
|
|
```
|
|
^(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[.]{8,}
|
|
```
|
|
|
|
##### Password Example 3
|
|
|
|
At least 8 characters including at least one numeric value, one special char
|
|
|
|
```
|
|
^(?=.*\d)(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[.]{8,}
|
|
```
|
|
|
|
##### Password Example 4
|
|
|
|
At least 8 characters including at least one special char
|
|
|
|
```
|
|
^(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[.]{8,}
|
|
```
|
|
|
|
##### Password Example 5
|
|
|
|
At least 8 characters
|
|
|
|
```
|
|
^[.]{8,}
|
|
```
|
|
|
|
##### Password Example 6
|
|
|
|
At least 12 characters
|
|
|
|
```
|
|
^[.]{12,}
|
|
```
|
|
|
|
## Localization
|
|
|
|
In the localization tab it's possible to define the default localization settings. Be aware that users may have localization settings different from the default settings. These localization settings are only important to provide a fallback if the user localization settings are not working.
|
|
|
|

|
|
|
|
### Defaults
|
|
|
|
In the defaults field you can select a default localization configuration which you can adjust afterwards.
|
|
|
|
 |