1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-20 08:25:16 +00:00

Can get the status of a friendship

This commit is contained in:
2020-06-30 09:50:31 +02:00
parent 31ed53aacf
commit 91d12bb061
7 changed files with 102 additions and 2 deletions

View File

@ -0,0 +1,10 @@
//! # Friendship status
//!
//! @author Pierre Hubert
pub struct FriendshipStatus {
pub are_friend: bool,
pub sent_request: bool,
pub received_request: bool,
pub following: bool,
}

View File

@ -17,4 +17,5 @@ pub mod group;
pub mod new_group;
pub mod group_member;
pub mod global_search_result;
pub mod friend;
pub mod friend;
pub mod friendship_status;