add loadPLugins method to ldap login interface (#13501)

This commit is contained in:
Alexandre Alves 2025-02-25 13:46:20 +00:00 committed by GitHub
parent bc66cc6835
commit f13e7c25ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -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) {