Why Grails Spring Security validation and logout filter always applies?
I'm using Grails 6.2.0 with the Spring Security Core 6.1.2 and Spring Security Rest 5.0.0 plugins.
I configured the filters as recommended in the documentation (or at least how I understood it):
grails.plugin.springsecurity.filterChain.chainMap = [
// public endpoints
[pattern: "/api/register", filters: 'none'],
[pattern: "/api/public/**",...