Users can now upload an avatar from Profile settings.

This commit is contained in:
2026-05-16 04:00:06 +03:30
parent f46f32aa4c
commit 61b4cf9252
13 changed files with 274 additions and 19 deletions

View File

@@ -2,7 +2,7 @@ export type User = {
id: number;
name: string;
email: string;
avatar?: string;
avatar: string | null;
email_verified_at: string | null;
two_factor_enabled?: boolean;
created_at: string;

View File

@@ -72,5 +72,6 @@ export type ChatMessage = {
user: {
id: number;
name: string;
avatar_url: string | null;
};
};