From 706544b13ce5a3703dd052db63ac7e6adb670da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Kaczmarek?= Date: Tue, 12 Dec 2023 16:49:00 +0100 Subject: [PATCH] fix(login): steps are not used with login flow when available --- EcoSonar-API/services/loginProxyConfigurationService.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EcoSonar-API/services/loginProxyConfigurationService.js b/EcoSonar-API/services/loginProxyConfigurationService.js index a072ced..ec88871 100644 --- a/EcoSonar-API/services/loginProxyConfigurationService.js +++ b/EcoSonar-API/services/loginProxyConfigurationService.js @@ -70,7 +70,8 @@ LoginProxyConfigurationService.prototype.getLoginCredentials = async function (p loginInformations = { authentication_url: result.login.get('authentication_url'), username: result.login.get('username'), - password: result.login.get('password') + password: result.login.get('password'), + steps: result.login.get('steps') } } })