UI & Feature update - Alpha #9

Merged
Mathis merged 22 commits from dev into prod 2026-01-14 22:40:06 +01:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 74b61004e7 - Show all commits

View File

@@ -1,3 +1,7 @@
jest.mock("uuid", () => ({
v4: jest.fn(() => "mocked-uuid"),
}));
import { Test, TestingModule } from "@nestjs/testing";
jest.mock("@noble/post-quantum/ml-kem.js", () => ({

View File

@@ -13,7 +13,7 @@ export interface RegisterPayload {
export interface AuthStatus {
isAuthenticated: boolean;
user: null | {
id: string;
uuid: string;
username: string;
displayName?: string;
avatarUrl?: string;