Skip to content

Commit

Permalink
Merge branch 'release/v2.0.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
enfoqueNativo committed Oct 19, 2020
2 parents e4c53e7 + 03d362f commit 27e2a63
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# CHANGELOG
## v 2.0.7 19/10/2020
* Se fixea inconveniente con uso de autenticación `toba` en concomitancia con otro método

## v 2.0.6 23/09/2020
* Agrega el parametro `schemes` a la generacion de la documentacion

Expand Down
7 changes: 6 additions & 1 deletion src/SIUToba/rest/seguridad/firewall.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ public function manejar($ruta, $request)
$auth instanceof autenticacion\autenticacion_digest_http ||
$auth->atiende_pedido($request)){
$authentication = $auth;
break;

//Chequeo si la autenticacion recupera usuario o solo entro aca
//por el reuso de clase que hace la autenticacion de Toba
if (null !== $authentication->get_usuario($request)) {
break;
}
}
}

Expand Down

0 comments on commit 27e2a63

Please sign in to comment.