2020-05-24 11:13:00 +00: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 11:09:50 +00:00
|
|
|
|
|
|
|
pub mod http_error;
|
2020-05-24 15:57:47 +00:00
|
|
|
pub mod login_success;
|
2020-05-25 11:25:51 +00:00
|
|
|
pub mod current_user_id;
|
2020-05-26 17:45:38 +00:00
|
|
|
pub mod user_info;
|
2020-06-02 11:26:12 +00:00
|
|
|
pub mod custom_emoji;
|
2020-06-03 11:28:28 +00:00
|
|
|
pub mod res_find_user_by_virtual_directory;
|
2020-06-04 15:47:52 +00:00
|
|
|
pub mod res_find_virtual_directory;
|
2020-06-04 17:01:35 +00:00
|
|
|
pub mod res_create_conversation;
|
|
|
|
pub mod conversation_api;
|
2020-06-18 07:40:18 +00:00
|
|
|
mod legacy_api_bool;
|
2020-06-18 12:15:17 +00:00
|
|
|
pub mod res_find_private_conversations;
|
|
|
|
pub mod conversation_message_api;
|
2020-06-22 12:32:14 +00:00
|
|
|
pub mod conversations_refresh_api;
|
2020-06-22 16:55:24 +00:00
|
|
|
pub mod res_count_unread_conversations;
|
2020-06-23 16:55:23 +00:00
|
|
|
pub mod list_unread_conversations_api;
|
2020-06-24 07:08:31 +00:00
|
|
|
pub mod global_search_result_api;
|
2020-06-25 06:16:20 +00:00
|
|
|
pub mod res_create_group;
|
2020-06-25 11:39:37 +00:00
|
|
|
pub mod group_api;
|
2020-06-26 08:35:54 +00:00
|
|
|
pub mod advanced_group_api;
|
2020-06-27 05:23:38 +00:00
|
|
|
pub mod res_change_group_logo;
|
2020-06-29 13:45:26 +00:00
|
|
|
pub mod group_member_api;
|
2020-06-30 07:50:31 +00:00
|
|
|
pub mod friend_api;
|
2020-07-02 16:19:04 +00:00
|
|
|
pub mod friendship_status_api;
|
2020-07-03 14:41:14 +00:00
|
|
|
pub mod post_api;
|
2020-07-04 14:44:42 +00:00
|
|
|
pub mod movie_api;
|
|
|
|
pub mod survey_choice_api;
|
2020-07-05 17:32:28 +00:00
|
|
|
pub mod survey_api;
|
2020-07-07 17:14:16 +00:00
|
|
|
pub mod comment_api;
|
2020-07-09 11:26:39 +00:00
|
|
|
pub mod res_create_post;
|
|
|
|
pub mod posts_targets_api;
|