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

Can check if a file is present in the request

This commit is contained in:
2020-06-20 14:06:59 +02:00
parent ca82924b85
commit a02dc8b7fa
3 changed files with 13 additions and 3 deletions

View File

@@ -233,5 +233,10 @@ pub fn refresh_single(r: &mut HttpRequestHandler) -> RequestResult {
/// Send a new message
pub fn send_message(r: &mut HttpRequestHandler) -> RequestResult {
if r.has_file("image") {
println!("File is detected.");
}
r.success("implement me")
}