1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-07-07 16:22:48 +00:00

Account image URL is null if unset

This commit is contained in:
2021-07-12 18:43:17 +02:00
parent e5b64746b4
commit c14a0da518
3 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@ pub struct AdminSearchUserResult {
first_name: String,
last_name: String,
email: String,
account_image: String
account_image: Option<String>
}
impl AdminSearchUserResult {

View File

@ -16,7 +16,7 @@ pub struct AdminUserInfoAPI {
last_activity: u64,
page_visibility: &'static str,
directory: Option<String>,
account_image: String,
account_image: Option<String>,
account_image_visibility: String,
friend_list_public: bool,
is_email_public: bool,