From 197e4d01e583f0e67b17a24aeb1753fbee9b42f4 Mon Sep 17 00:00:00 2001 From: alandavl Date: Thu, 29 Aug 2024 15:05:44 -0300 Subject: [PATCH] feature: passing is_editable and is_deletable fields to create human service dashboard (#38) --- .../dashboards/usecases/human_service_dashboard_creation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/insights/dashboards/usecases/human_service_dashboard_creation.py b/insights/dashboards/usecases/human_service_dashboard_creation.py index f4cf08d..bb7e18b 100644 --- a/insights/dashboards/usecases/human_service_dashboard_creation.py +++ b/insights/dashboards/usecases/human_service_dashboard_creation.py @@ -21,6 +21,8 @@ def create_dashboard(self, project): description="Dashboard de atendimento humano", is_default=True, grid=[18, 3], + is_deletable=False, + is_editable=False, ) self.create_widgets(atendimento_humano)