This commit is contained in:
2023-08-07 02:07:38 +02:00
parent 86d33b9d81
commit f98250463e

View File

@@ -39,6 +39,7 @@ async fn make_register_request(user_id: UserId, username: &str, token: &str) ->
reqwest::Client::new()
.post(config::CONFIG.manager_url.clone())
.header("Authorization", config::CONFIG.manager_api_key.clone())
.header("Content-Type", "application/json")
.json(&data)
.send()
.await?