Function ::exo::db::remove_inbox

Overview
async fn remove_inbox(value, value1) -> Result

Removes a record from a users inbox. This function will not fail, when the given record was not inside of the users inbox.

Example:

let user = exo::get_user();
let record = exo::get_record()?;
assert!(exo::db::remove_inbox(user.uuid, record.uuid).await.is_ok());