`cargo fmt` changes
The PR build seems to fail without this...
This commit is contained in:
parent
c42bcae224
commit
38104ba7cf
|
@ -308,7 +308,8 @@ fn invite_user(data: Json<InviteData>, _token: AdminToken, conn: DbConn) -> Json
|
|||
}
|
||||
|
||||
user.save(&conn)
|
||||
})().map_err(|e| e.with_code(Status::InternalServerError.code))?;
|
||||
})()
|
||||
.map_err(|e| e.with_code(Status::InternalServerError.code))?;
|
||||
|
||||
Ok(Json(user.to_json(&conn)))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue