From 2ef9a24dbef09f143702e68ded7bea8bc8f3c1c3 Mon Sep 17 00:00:00 2001 From: shubham Date: Wed, 17 Feb 2021 17:24:52 +0530 Subject: [PATCH] Setting DEFAULT to False. In openstack when user logged in, user is redirected to project page but after installation of mistral , now default dashboard page is set to mistral. In order to make project as default dashboard page setting DEFAULT as False. Change-Id: I663149cc4986f5c1ca83a819eb10bf484baa228a (cherry picked from commit 7fd7c820d106cdaacb3e13c80bc8628744c4f80c) --- mistraldashboard/enabled/_50_mistral.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mistraldashboard/enabled/_50_mistral.py b/mistraldashboard/enabled/_50_mistral.py index 07fa6db..888b8e3 100644 --- a/mistraldashboard/enabled/_50_mistral.py +++ b/mistraldashboard/enabled/_50_mistral.py @@ -16,7 +16,7 @@ from mistraldashboard import exceptions DASHBOARD = 'mistral' ADD_INSTALLED_APPS = ['mistraldashboard'] -DEFAULT = True +DEFAULT = False ADD_EXCEPTIONS = { 'recoverable': exceptions.RECOVERABLE,