1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-23 05:49:22 +00:00
comunicapiv3/src/api_data/mod.rs

26 lines
707 B
Rust
Raw Normal View History

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;
pub mod custom_emoji;
2020-06-03 11:28:28 +00:00
pub mod res_find_user_by_virtual_directory;
pub mod res_find_virtual_directory;
pub mod res_create_conversation;
pub mod conversation_api;
mod legacy_api_bool;
2020-06-18 12:15:17 +00:00
pub mod res_find_private_conversations;
pub mod conversation_message_api;
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;