[del] conf:settings.name_index
This commit is contained in:
parent
9006170bdf
commit
d77f0299b9
2 changed files with 0 additions and 14 deletions
|
@ -59,10 +59,6 @@
|
|||
"password_change": {
|
||||
"cooldown_time": 300
|
||||
},
|
||||
"name_index": {
|
||||
"veil": false,
|
||||
"salt": null
|
||||
},
|
||||
"connections": {
|
||||
"frontend_url_base": "http://localhost:8888",
|
||||
"login_url": null
|
||||
|
|
|
@ -164,10 +164,6 @@ namespace _espe.conf
|
|||
password_change : {
|
||||
cooldown_time : int;
|
||||
};
|
||||
name_index : {
|
||||
veil : boolean;
|
||||
salt : (null | string);
|
||||
};
|
||||
connections : {
|
||||
frontend_url_base : (null | string);
|
||||
login_url : (null | string);
|
||||
|
@ -413,12 +409,6 @@ namespace _espe.conf
|
|||
"cooldown_time": (node_settings_password_change["cooldown_time"] ?? 86400),
|
||||
})) (node_settings["password_change"] ?? {})
|
||||
),
|
||||
"name_index": (
|
||||
((node_settings_password_policy) => ({
|
||||
"veil": (node_settings_password_policy["veil"] ?? true),
|
||||
"salt": (node_settings_password_policy["salt"] ?? ""),
|
||||
})) (node_settings["name_index"] ?? {})
|
||||
),
|
||||
"connections": (
|
||||
((node_settings_connections) => ({
|
||||
"frontend_url_base": (node_settings_connections["frontend_url_base"] ?? null),
|
||||
|
|
Loading…
Add table
Reference in a new issue