diff --git a/App/FeatureSet/Identity/API/Authentication.ts b/App/FeatureSet/Identity/API/Authentication.ts index 6ff587c01d..e9bfd57436 100644 --- a/App/FeatureSet/Identity/API/Authentication.ts +++ b/App/FeatureSet/Identity/API/Authentication.ts @@ -124,8 +124,10 @@ router.post( ): Promise => { try { if (await DatabaseConfig.shouldDisableSignup()) { - // Check if this user has been invited to a project. - // If so, allow them to sign up even if signup is disabled. + /* + * Check if this user has been invited to a project. + * If so, allow them to sign up even if signup is disabled. + */ const data: JSONObject = req.body["data"] as JSONObject; const emailForInviteCheck: string | undefined = data?.["email"] as | string