1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-09-25 22:29:45 +00:00

Ready to implement messages sending

This commit is contained in:
2020-06-20 11:55:39 +02:00
parent 25a368fd98
commit ca82924b85
2 changed files with 7 additions and 0 deletions

View File

@@ -229,4 +229,9 @@ pub fn refresh_single(r: &mut HttpRequestHandler) -> RequestResult {
conversations_helper::mark_user_seen(conv_id, r.user_id()?)?;
r.set_response(ConversationMessageAPI::for_list(&messages))
}
/// Send a new message
pub fn send_message(r: &mut HttpRequestHandler) -> RequestResult {
r.success("implement me")
}