Browse Source

Fix incorrect documentation

pull/13891/head
username1103 2 years ago committed by Marcus Hert Da Coregio
parent
commit
14b328e3ed
  1. 4
      docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

4
docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

@ -562,8 +562,8 @@ http
---- ----
http { http {
authorizeHttpRequests { authorizeHttpRequests {
authorize(DispatcherType.FORWARD, permitAll) authorize(DispatcherTypeRequestMatcher(DispatcherType.FORWARD), permitAll)
authorize(DispatcherType.ERROR, permitAll) authorize(DispatcherTypeRequestMatcher(DispatcherType.ERROR), permitAll)
authorize("/endpoint", permitAll) authorize("/endpoint", permitAll)
authorize(anyRequest, denyAll) authorize(anyRequest, denyAll)
} }

Loading…
Cancel
Save