From 88d8593ad4f8cc43eb92c3f01b47fdcfe46c1f29 Mon Sep 17 00:00:00 2001 From: Francesco Di Nucci Date: Mon, 24 Jun 2024 09:26:14 +0200 Subject: [PATCH] Update USER_MENU_LINKS Update default to reflect https://review.opendev.org/c/openstack/horizon/+/922207 Change-Id: Iac841a239e0e83dd01bf28d63d9910c06c05a95e --- doc/source/configuration/settings.rst | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/doc/source/configuration/settings.rst b/doc/source/configuration/settings.rst index a0656842c0..c759699c22 100644 --- a/doc/source/configuration/settings.rst +++ b/doc/source/configuration/settings.rst @@ -1023,7 +1023,7 @@ USER_MENU_LINKS .. versionadded:: 13.0.0(Queens) -Default: +Default up to Caracal (2024.1): .. code-block:: python @@ -1035,6 +1035,23 @@ Default: } ] +Default: + +.. code-block:: python + + [ + {'name': _('OpenStack RC File'), + 'icon_classes': ['fa-download', ], + 'url': 'horizon:project:api_access:openrc', + 'external': False, + }, + {'name': _('OpenStack clouds.yaml File'), + 'icon_classes': ['fa-download', ], + 'url': 'horizon:project:api_access:clouds.yaml', + 'external': False, + } + ] + This setting controls the additional links on the user drop down menu. A list of dictionaries defining all of the links should be provided. This defaults to the standard OpenStack RC files.