diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 281cf34f55..0767723e02 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -84,7 +84,6 @@ "default_app", "updates_tab", "system_updates_section", - "sidebar_position", "disable_system_update_notification", "disable_change_log_notification", "backups_tab", @@ -683,7 +682,7 @@ "icon": "fa fa-cog", "issingle": 1, "links": [], - "modified": "2024-08-12 17:02:41.877346", + "modified": "2024-08-20 13:50:49.711427", "modified_by": "Administrator", "module": "Core", "name": "System Settings", @@ -702,4 +701,4 @@ "sort_order": "DESC", "states": [], "track_changes": 1 -} +} \ No newline at end of file diff --git a/frappe/core/doctype/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 3cc2c517e1..135c9b9094 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -83,12 +83,12 @@ class SystemSettings(Document): ] otp_issuer_name: DF.Data | None password_reset_limit: DF.Int + rate_limit_email_link_login: DF.Int reset_password_link_expiry_duration: DF.Duration | None reset_password_template: DF.Link | None rounding_method: DF.Literal["Banker's Rounding (legacy)", "Banker's Rounding", "Commercial Rounding"] session_expiry: DF.Data | None setup_complete: DF.Check - sidebar_position: DF.Literal["Left", "Right"] store_attached_pdf_document: DF.Check strip_exif_metadata_from_uploaded_images: DF.Check time_format: DF.Literal["HH:mm:ss", "HH:mm"]