From 16afe25d8ad0cec9bcc7088d89d5024d13d32c9a Mon Sep 17 00:00:00 2001
From: Ying Zuo <yinzuo@cisco.com>
Date: Sun, 10 Sep 2017 21:49:12 -0600
Subject: [PATCH] Set Angular roles panel as the default

The actions in Django roles panel have been implemented in the Angular
version so setting the Angular version as the default.

Change-Id: I1e01b2e93090255d82ef92e51b943b0a715d2e7e
Partially-Implements: blueprint ng-roles
---
 doc/source/configuration/settings.rst | 2 +-
 openstack_dashboard/settings.py       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/source/configuration/settings.rst b/doc/source/configuration/settings.rst
index 0ec34ddeaf..7ef538f3df 100644
--- a/doc/source/configuration/settings.rst
+++ b/doc/source/configuration/settings.rst
@@ -53,7 +53,7 @@ Default:
         'domains_panel': False,
         'users_panel': False,
         'groups_panel': False,
-        'roles_panel': False
+        'roles_panel': True
     }
 
 A dictionary of currently available AngularJS features. This allows simple
diff --git a/openstack_dashboard/settings.py b/openstack_dashboard/settings.py
index 2d03a49735..ba82951045 100644
--- a/openstack_dashboard/settings.py
+++ b/openstack_dashboard/settings.py
@@ -329,7 +329,7 @@ ANGULAR_FEATURES = {
     'domains_panel': False,
     'users_panel': False,
     'groups_panel': False,
-    'roles_panel': False,
+    'roles_panel': True
 }
 
 # Notice all customizable configurations should be above this line