Making users creatable by default in horizon

Change-Id: I021bd17564f1a20591d3aac8a254f4976e14e681
This commit is contained in:
jakedahn 2012-03-12 14:07:51 -07:00
parent 06a09d0c33
commit 770cec7314

View File

@ -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