I have this definition in my-theme/app/Middleware/VerifyNonce.php:
public $except = [ 'admin/stats/report' ];
But I noticed that this exception was getting applied where I was not expecting it, like admin/accounts/type/filtered
I took a dive and the issue is in the excludePath() function in BaseVerify.php where it fails this condition:
if( count($explodedPath) == count($exclude) ) {
I believe this to be a bug - since now any route which isn't 3 parts will be excluded.
I have this definition in my-theme/app/Middleware/VerifyNonce.php:
public $except = [ 'admin/stats/report' ];
But I noticed that this exception was getting applied where I was not expecting it, like admin/accounts/type/filtered
I took a dive and the issue is in the excludePath() function in BaseVerify.php where it fails this condition:
if( count($explodedPath) == count($exclude) ) {
I believe this to be a bug - since now any route which isn't 3 parts will be excluded.