Implement get_invite_code_for_user on test db

This commit is contained in:
Nathan Sobo 2022-05-23 18:07:23 -06:00
parent 5c2fdc01ff
commit 6ed503fe6e

View file

@ -1717,7 +1717,7 @@ pub mod tests {
}
async fn get_invite_code_for_user(&self, _id: UserId) -> Result<Option<(String, u32)>> {
unimplemented!()
Ok(None)
}
async fn get_user_for_invite_code(&self, _code: &str) -> Result<User> {