Make LDAP view that contains the server and external ldap

This commit is contained in:
Girish Ramakrishnan
2025-10-05 10:53:08 +02:00
parent 32f4b72d68
commit 7a24c23bdd
5 changed files with 55 additions and 43 deletions
+15
View File
@@ -0,0 +1,15 @@
<script setup>
import LdapServer from '../components/LdapServer.vue';
import ExternalLdap from '../components/ExternalLdap.vue';
</script>
<template>
<div class="content">
<LdapServer />
<ExternalLdap />
</div>
</template>