Users can now upload an avatar from Profile settings.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -72,5 +72,6 @@ export type ChatMessage = {
|
||||
user: {
|
||||
id: number;
|
||||
name: string;
|
||||
avatar_url: string | null;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user