1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-21 00:45:18 +00:00

Can get a conversation ID from a POST request

This commit is contained in:
2020-06-12 09:04:43 +02:00
parent bfd7cc0630
commit 619fc171e1
3 changed files with 28 additions and 3 deletions

View File

@ -55,5 +55,7 @@ pub fn get_list(r: &mut HttpRequestHandler) -> RequestResult {
/// Get information about a single conversation
pub fn get_single(r: &mut HttpRequestHandler) -> RequestResult {
r.success("Implement id")
let conversation_id = r.post_conv_id("conversationID")?;
r.success("do it")
}