From d97deaa90e70763ed2f33e22bb32ba2749ad5820 Mon Sep 17 00:00:00 2001 From: Matthew Irish Date: Thu, 14 Jun 2018 15:55:49 -0500 Subject: [PATCH] add configuration tab for ldap, okta, radius auth methods --- ui/app/helpers/tabs-for-auth-section.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ui/app/helpers/tabs-for-auth-section.js b/ui/app/helpers/tabs-for-auth-section.js index cd4d917a7d77..70492f442ab6 100644 --- a/ui/app/helpers/tabs-for-auth-section.js +++ b/ui/app/helpers/tabs-for-auth-section.js @@ -39,6 +39,24 @@ const TABS_FOR_SETTINGS = { routeParams: ['vault.cluster.settings.auth.configure.section', 'configuration'], }, ], + ldap: [ + { + label: 'Configuration', + routeParams: ['vault.cluster.settings.auth.configure.section', 'configuration'], + }, + ], + okta: [ + { + label: 'Configuration', + routeParams: ['vault.cluster.settings.auth.configure.section', 'configuration'], + }, + ], + radius: [ + { + label: 'Configuration', + routeParams: ['vault.cluster.settings.auth.configure.section', 'configuration'], + }, + ], }; const TABS_FOR_SHOW = {};