staging_1.2.6 #467

Merged
edraft merged 16 commits from staging_1.2.6 into staging 2024-01-26 12:18:06 +01:00
Showing only changes of commit 7888783b6a - Show all commits

View File

@ -86,11 +86,6 @@ class AuthController:
@Route.post(f"{BasePath}/register-by-id/<id>")
async def register_id(self, id: str):
if not FeatureFlagsSettings.get_flag_from_dict(
self._technician_config.feature_flags, FeatureFlagsEnum.basic_registration
):
return
result = await self._auth_service.confirm_email_async(id)
return jsonify(result)