adding chat features, admin features and bug fixes

This commit is contained in:
Matthias Hochmeister
2026-03-12 08:16:34 +01:00
parent 7b14e3d5ba
commit 31f1414e06
43 changed files with 2610 additions and 16 deletions

7
frontend/src/dompurify.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
declare module 'dompurify' {
interface DOMPurifyI {
sanitize(source: string | Node, config?: Record<string, unknown>): string;
}
const DOMPurify: DOMPurifyI;
export default DOMPurify;
}