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:
10
src/data/friendship_status.rs
Normal file
10
src/data/friendship_status.rs
Normal 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,
|
||||
}
|
@ -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;
|
Reference in New Issue
Block a user