Rate Matrix Rules user story

This commit is contained in:
hagiye
2026-06-02 10:47:36 +03:00
parent 3682bda85c
commit d52a5715e0
12 changed files with 769 additions and 3 deletions

View File

@@ -52,3 +52,10 @@ export interface AuthTokens {
export interface LoginResponse extends Partial<AuthTokens> {
mfaRequired?: boolean;
}
// Additional types for Matrix form test
export interface User {
id: string;
name: string;
role: "ADMIN" | "MANAGER" | "CHIEF_EXECUTIVE";
}

View File

@@ -11,3 +11,5 @@ export const useAuth = () => {
return context;
};