mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: set profile visibility
This commit is contained in:
parent
42a78802a6
commit
6806787ca0
15 changed files with 276 additions and 194 deletions
|
@ -310,6 +310,13 @@ export interface UserProfile {
|
|||
relation: UserRelation | null;
|
||||
}
|
||||
|
||||
export interface UpdateProfileProps {
|
||||
displayName?: string;
|
||||
profileVisibility?: "PUBLIC" | "PRIVATE" | "FRIENDS";
|
||||
profileImageUrl?: string | null;
|
||||
bio?: string;
|
||||
}
|
||||
|
||||
export interface DownloadSource {
|
||||
id: number;
|
||||
name: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue