From e152d398ffa56c5981d2828ee6764e0e23f4b40e Mon Sep 17 00:00:00 2001 From: Cindy Lu Date: Tue, 17 Jan 2017 15:39:49 -0800 Subject: [PATCH] New Identity NG Panels missing stuff in settings.py/rst Newly added NG panels are missing some definitions in settings.py and settings.rst NG Domains default is not defined in settings.py https://review.openstack.org/#/c/387771/ NG Roles default should be described in settings.rst documentation https://review.openstack.org/#/c/222825/ Change-Id: I0bddbf2c829467c2c1ea20d96124c66ec46c50b4 --- doc/source/topics/settings.rst | 1 + openstack_dashboard/settings.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/topics/settings.rst b/doc/source/topics/settings.rst index f9ada9e9b8..ee537f78ef 100644 --- a/doc/source/topics/settings.rst +++ b/doc/source/topics/settings.rst @@ -439,6 +439,7 @@ Default:: 'images_panel': True, 'flavors_panel': False, 'users_panel': False, + 'roles_panel': False, 'domains_panel': False } diff --git a/openstack_dashboard/settings.py b/openstack_dashboard/settings.py index a121f226b5..4e6a204074 100644 --- a/openstack_dashboard/settings.py +++ b/openstack_dashboard/settings.py @@ -316,7 +316,8 @@ ANGULAR_FEATURES = { 'images_panel': True, 'flavors_panel': False, 'users_panel': False, - 'roles_panel': False + 'roles_panel': False, + 'domains_panel': False } # Notice all customizable configurations should be above this line