Mostly add OpenIdClients UI

This commit is contained in:
Johannes Zellner
2025-01-19 19:53:29 +01:00
parent 7f91e85df8
commit 4045a16e27
5 changed files with 168 additions and 22 deletions

View File

@@ -7,6 +7,7 @@ import { Button, Checkbox } from 'pankow';
import Section from './Section.vue';
import ExternalLdap from './ExternalLdap.vue';
import ExposedLdap from './ExposedLdap.vue';
import OpenIdClients from './OpenIdClients.vue';
import UserDirectoryModel from '../models/UserDirectoryModel.js';
const userDirectoryModel = UserDirectoryModel.create(API_ORIGIN, localStorage.token);
@@ -55,6 +56,6 @@ onMounted(async () => {
<ExternalLdap />
<ExposedLdap />
<!-- TODO oidc clients -->
<OpenIdClients />
</div>
</template>