diff options
author | Cindy Lu <clu@us.ibm.com> | 2017-01-17 15:39:49 -0800 |
---|---|---|
committer | Cindy Lu <clu@us.ibm.com> | 2017-01-17 15:39:49 -0800 |
commit | e152d398ffa56c5981d2828ee6764e0e23f4b40e (patch) | |
tree | 2c09d35f373640a528b2db28be67fd453ddf9b69 | |
parent | 196cd93a13e2d662d16634226ca864188fc56abd (diff) | |
download | horizon-e152d398ffa56c5981d2828ee6764e0e23f4b40e.tar.gz |
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
-rw-r--r-- | doc/source/topics/settings.rst | 1 | ||||
-rw-r--r-- | openstack_dashboard/settings.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/source/topics/settings.rst b/doc/source/topics/settings.rst index f9ada9e9b..ee537f78e 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 a121f226b..4e6a20407 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 |