Files
stoatchat/src/routes/users/unblock_user.rs
2022-01-27 14:16:30 +00:00

11 lines
242 B
Rust

use revolt_quark::{Error, Result};
use futures::try_join;
use mongodb::bson::doc;
use rocket::serde::json::Value;
#[delete("/<target>/block")]
pub async fn req(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
todo!()
}