Phase 2: Docker and OIDC auth

This commit is contained in:
2026-05-04 13:50:53 +02:00
parent 47baee854b
commit 4226628d5a
71 changed files with 9722 additions and 1347 deletions
+32
View File
@@ -0,0 +1,32 @@
import type { UserDirectoryItem } from "./types";
export interface UserDetailField {
label: string;
value: string;
}
export interface UserContactAction {
label: string;
enabled: boolean;
hint: string;
}
export interface UserContactState {
label: string;
description: string;
}
export interface UserDrawerModel {
title: string;
subtitle: string;
contactState: UserContactState;
contactActions: UserContactAction[];
identity: UserDetailField[];
permissions: string[];
syncStatus: string;
source: string;
}
export declare function buildUserDrawerModel(
user: UserDirectoryItem,
): UserDrawerModel;