1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Prevented inadvertant logging during MFA flow

- Added StoppedAuthenticationException to dontReport list.
- Added test to cover.

Closes #3468
This commit is contained in:
Dan Brown
2022-05-30 18:31:08 +01:00
parent 43cbab2822
commit 16e023985d
2 changed files with 11 additions and 0 deletions

View File

@ -21,6 +21,7 @@ class Handler extends ExceptionHandler
*/
protected $dontReport = [
NotFoundException::class,
StoppedAuthenticationException::class,
];
/**