diff --git a/backend/oauth_login.json b/backend/oauth_login.json index 3531aaba64..93cdaac2b2 100644 --- a/backend/oauth_login.json +++ b/backend/oauth_login.json @@ -22,5 +22,11 @@ "token_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token", "userinfo_url": "https://graph.microsoft.com/oidc/userinfo", "scopes": ["openid", "profile", "email"] + }, + "jumpcloud": { + "auth_url": "https://oauth.id.jumpcloud.com/oauth2/auth", + "token_url": "https://oauth.id.jumpcloud.com/oauth2/token", + "userinfo_url": "https://oauth.id.jumpcloud.com/userinfo", + "scopes": ["email"] } } diff --git a/backend/tests/worker.rs b/backend/tests/worker.rs index 0b0bc2c957..f4783d1aa3 100644 --- a/backend/tests/worker.rs +++ b/backend/tests/worker.rs @@ -102,7 +102,7 @@ impl ApiServer { port_tx, )); - port_tx.await.unwrap(); + _port_rx.await.unwrap(); return Self { addr, tx, task }; }