
User Credentials panel is added to Identity dashboard. Credentials table has Create, Update and Delete credential actions. Credentials tab is added to the user details for Identity -> Users table. Credentials panel is added to user settings. Change-Id: Icaabed327604d39b0bf6ac3e3cacf9c62f9e5d5d
11 lines
420 B
Python
11 lines
420 B
Python
# The slug of the panel to be added to HORIZON_CONFIG. Required.
|
|
PANEL = 'credentials'
|
|
# The slug of the dashboard the PANEL associated with. Required.
|
|
PANEL_DASHBOARD = 'identity'
|
|
# The slug of the panel group the PANEL is associated with.
|
|
PANEL_GROUP = 'default'
|
|
|
|
# Python panel class of the PANEL to be added.
|
|
ADD_PANEL = ('openstack_dashboard.dashboards.identity.credentials'
|
|
'.panel.CredentialsPanel')
|