mirror of
https://gitlab.com/comunic/comunicconsole
synced 2025-06-20 08:35:18 +00:00
Start to display user information
This commit is contained in:
@ -11,7 +11,7 @@ export interface SearchResult {
|
||||
first_name: string;
|
||||
last_name: string;
|
||||
email: string;
|
||||
account_image: string;
|
||||
account_image?: string;
|
||||
}
|
||||
|
||||
export interface ComunicUser {
|
||||
@ -21,15 +21,16 @@ export interface ComunicUser {
|
||||
email: string;
|
||||
account_creation_time: number;
|
||||
last_activity: number;
|
||||
page_visibilty: "private" | "public" | "open";
|
||||
page_visibility: "private" | "public" | "open";
|
||||
directory?: string;
|
||||
account_image: string;
|
||||
friend_list_public: string;
|
||||
account_image?: string;
|
||||
account_image_visibility: "friends" | "public" | "open";
|
||||
friend_list_public: boolean;
|
||||
is_email_public: boolean;
|
||||
personal_website?: string;
|
||||
public_note?: string;
|
||||
location?: string;
|
||||
block_commments: boolean;
|
||||
block_comments: boolean;
|
||||
allow_posts_from_friends: boolean;
|
||||
allow_mails: boolean;
|
||||
lang: string;
|
||||
|
Reference in New Issue
Block a user