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

View File

@@ -4,7 +4,6 @@ import { ref, onMounted, inject } from 'vue';
import { Switch } from '@cloudron/pankow';
import Section from '../components/Section.vue';
import SettingsItem from '../components/SettingsItem.vue';
import ExternalLdap from '../components/ExternalLdap.vue';
import UserDirectoryModel from '../models/UserDirectoryModel.js';
const features = inject('features');
@@ -62,7 +61,5 @@ onMounted(async () => {
<Switch v-model="mandatory2FA" @change="onToggleMandatory2FA" :disabled="busy || !features.profileConfig"/>
</SettingsItem>
</Section>
<ExternalLdap />
</div>
</template>