Refactor user settings implementation

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 19:54:33 +00:00
parent 7fc30413ad
commit 01837bc999
12 changed files with 2456 additions and 0 deletions

View File

@@ -98,7 +98,12 @@ export interface Profile {
bio?: string;
avatar_url?: string;
avatar_image_id?: string;
preferred_pronouns?: string;
show_pronouns?: boolean;
timezone?: string;
preferred_language?: string;
location?: Location;
location_id?: string;
date_of_birth?: string;
privacy_level: 'public' | 'friends' | 'private';
theme_preference: 'light' | 'dark' | 'system';