feat(frontend): implemented CSAS button responsiveness

This commit is contained in:
ribardej
2025-11-12 15:31:30 +01:00
parent 186b4fd09a
commit e164b185e0
2 changed files with 48 additions and 2 deletions

View File

@@ -133,6 +133,9 @@ export type User = {
is_active: boolean;
is_superuser: boolean;
is_verified: boolean;
// Optional JSON config object for user-level integrations and settings
// Example: { csas: "{\"expires_at\": 1761824615, ...}" } or { csas: { expires_at: 1761824615, ... } }
config?: Record<string, any> | null;
};
export async function getMe(): Promise<User> {