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.