2020-05-24 13:13:00 +02:00
|
|
|
//! # API structures
|
|
|
|
//!
|
|
|
|
//! ## Presentation
|
|
|
|
//! This module contains all the serializable structures that can be sent through the API to the
|
|
|
|
//! Clients
|
|
|
|
//!
|
|
|
|
//! ## Author
|
|
|
|
//! Pierre Hubert
|
2020-05-24 13:09:50 +02:00
|
|
|
|
|
|
|
pub mod http_error;
|
2020-05-24 17:57:47 +02:00
|
|
|
pub mod login_success;
|
2020-05-25 13:25:51 +02:00
|
|
|
pub mod current_user_id;
|
2020-05-26 19:45:38 +02:00
|
|
|
pub mod user_info;
|
2020-06-02 13:26:12 +02:00
|
|
|
pub mod custom_emoji;
|
2020-06-03 13:28:28 +02:00
|
|
|
pub mod res_find_user_by_virtual_directory;
|
2020-06-04 17:47:52 +02:00
|
|
|
pub mod res_find_virtual_directory;
|
2020-06-04 19:01:35 +02:00
|
|
|
pub mod res_create_conversation;
|
|
|
|
pub mod conversation_api;
|
2020-06-18 09:40:18 +02:00
|
|
|
mod legacy_api_bool;
|
2020-06-18 14:15:17 +02:00
|
|
|
pub mod res_find_private_conversations;
|
|
|
|
pub mod conversation_message_api;
|
2020-06-22 14:32:14 +02:00
|
|
|
pub mod conversations_refresh_api;
|
2020-06-22 18:55:24 +02:00
|
|
|
pub mod res_count_unread_conversations;
|
2020-06-23 18:55:23 +02:00
|
|
|
pub mod list_unread_conversations_api;
|
2020-06-24 09:08:31 +02:00
|
|
|
pub mod global_search_result_api;
|
2020-06-25 08:16:20 +02:00
|
|
|
pub mod res_create_group;
|
2020-06-25 13:39:37 +02:00
|
|
|
pub mod group_api;
|
2020-06-26 10:35:54 +02:00
|
|
|
pub mod advanced_group_api;
|
2020-06-27 07:23:38 +02:00
|
|
|
pub mod res_change_group_logo;
|
2020-06-29 15:45:26 +02:00
|
|
|
pub mod group_member_api;
|
2020-06-30 09:50:31 +02:00
|
|
|
pub mod friend_api;
|
2020-07-02 18:19:04 +02:00
|
|
|
pub mod friendship_status_api;
|
2020-07-03 16:41:14 +02:00
|
|
|
pub mod post_api;
|
2020-07-04 16:44:42 +02:00
|
|
|
pub mod movie_api;
|
|
|
|
pub mod survey_choice_api;
|
2020-07-05 19:32:28 +02:00
|
|
|
pub mod survey_api;
|
2020-07-07 19:14:16 +02:00
|
|
|
pub mod comment_api;
|
2020-07-09 13:26:39 +02:00
|
|
|
pub mod res_create_post;
|
2020-07-10 08:21:40 +02:00
|
|
|
pub mod posts_targets_api;
|
2020-07-10 12:55:50 +02:00
|
|
|
pub mod res_create_comment;
|
2020-07-10 13:31:40 +02:00
|
|
|
pub mod res_number_unread_notifications;
|
|
|
|
pub mod res_count_all_unreads;
|