Fix incorrect documentation

This commit is contained in:
username1103 2023-08-30 21:57:14 +09:00 committed by Marcus Hert Da Coregio
parent 3cff9ff04a
commit 14b328e3ed

View File

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