From f13e7c25ca449afe13f3f893a2b51b4e0392b594 Mon Sep 17 00:00:00 2001 From: Alexandre Alves Date: Tue, 25 Feb 2025 13:46:20 +0000 Subject: [PATCH] add loadPLugins method to ldap login interface (#13501) --- shell/components/auth/login/ldap.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/shell/components/auth/login/ldap.vue b/shell/components/auth/login/ldap.vue index 745f613d34..55723bd731 100644 --- a/shell/components/auth/login/ldap.vue +++ b/shell/components/auth/login/ldap.vue @@ -2,6 +2,7 @@ import { LabeledInput } from '@components/Form/LabeledInput'; import AsyncButton from '@shell/components/AsyncButton'; import Login from '@shell/mixins/login'; +import loadPlugins from '@shell/plugins/plugin'; export default { emits: ['error', 'showInputs'], @@ -32,6 +33,12 @@ export default { } }); + await loadPlugins({ + app: this.$store.app, + store: this.$store, + $plugin: this.$store.$plugin + }); + buttonCb(true); this.$router.replace('/'); } catch (err) {