From 770cec73146596c686405492e523fbe8861f36f7 Mon Sep 17 00:00:00 2001 From: jakedahn Date: Mon, 12 Mar 2012 14:07:51 -0700 Subject: [PATCH] Making users creatable by default in horizon Change-Id: I021bd17564f1a20591d3aac8a254f4976e14e681 --- files/horizon_settings.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/files/horizon_settings.py b/files/horizon_settings.py index 2d1d1f8648..1a6c17af8c 100644 --- a/files/horizon_settings.py +++ b/files/horizon_settings.py @@ -40,6 +40,12 @@ HORIZON_CONFIG = { 'user_home': 'openstack_dashboard.views.user_home', } +# TODO(tres): Remove these once Keystone has an API to identify auth backend. +OPENSTACK_KEYSTONE_BACKEND = { + 'name': 'native', + 'can_edit_user': True +} + OPENSTACK_HOST = "127.0.0.1" OPENSTACK_KEYSTONE_URL = "http://%s:5000/v2.0" % OPENSTACK_HOST # FIXME: this is only needed until keystone fixes its GET /tenants call