From ce69175cd3a635665f112054ed4991b1b4da93f5 Mon Sep 17 00:00:00 2001 From: Abstra Bot Date: Fri, 17 Mar 2023 18:37:29 +0000 Subject: [PATCH] Update abstra-cli --- abstra_cli/resources/dashes.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/abstra_cli/resources/dashes.py b/abstra_cli/resources/dashes.py index 0e62321..9156033 100644 --- a/abstra_cli/resources/dashes.py +++ b/abstra_cli/resources/dashes.py @@ -10,6 +10,7 @@ NAME_PARAMETERS = ["name", "title"] PATH_PARAMETERS = ["path"] CODE_PARAMETERS = ["code", "c"] +SHOW_SIDEBAR_PARAMETERS = ["show_sidebar"] BACKGROUND_PARAMETERS = ["background"] OTHER_PARAMETERS = [ "main_color", @@ -18,6 +19,7 @@ "log_messages", "brand_name", ] + LAYOUT_PARAMETERS = ["layout"] NON_FLAG_PARAMETERS = ( NAME_PARAMETERS @@ -26,8 +28,9 @@ + BACKGROUND_PARAMETERS + OTHER_PARAMETERS + LAYOUT_PARAMETERS + + SHOW_SIDEBAR_PARAMETERS ) -FLAG_PARAMETERS = ["auto_start", "allow_restart", "show_sidebar", "enabled"] +FLAG_PARAMETERS = ["enabled"] DASH_PARAMETERS = FLAG_PARAMETERS + NON_FLAG_PARAMETERS