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;
|
|
|
|
pub mod res_create_group;
|