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
This commit is contained in:
shubham 2021-02-17 17:24:52 +05:30 committed by Tobias Urdin
parent f5473fc236
commit 7fd7c820d1
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ from mistraldashboard import exceptions
DASHBOARD = 'mistral'
ADD_INSTALLED_APPS = ['mistraldashboard']
DEFAULT = True
DEFAULT = False
ADD_EXCEPTIONS = {
'recoverable': exceptions.RECOVERABLE,