From e55dd2f5a0b14a10435c8409aafc588c8262a7af Mon Sep 17 00:00:00 2001 From: Corentin Forler Date: Tue, 9 Sep 2025 18:44:20 +0200 Subject: [PATCH] fix: Add standard_help_items to prevent deletion on migrate --- erpnext/hooks.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 0d6bd7da52b..7b167c09780 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -230,6 +230,26 @@ calendars = [ fullcalendar_scheduler_licence_key = "GPL-My-Project-Is-Open-Source" +standard_help_items = [ + { + "item_label": "Documentation", + "item_type": "Route", + "route": "https://doc.dokos.io", + "is_standard": 1, + }, + { + "item_label": "Community", + "item_type": "Route", + "route": "https://community.dokos.io", + "is_standard": 1, + }, + { + "item_label": "Report an issue", + "item_type": "Route", + "route": "https://gitlab.com/dokos/dokos/issues", + "is_standard": 1, + }, +] website_generators = ["BOM", "Sales Partner"] -- GitLab