Sfoglia il codice sorgente

Fix logout code snippet for Kotlin: Corrected deleteCookies syntax

mskim 8 mesi fa
parent
commit
0e3cfd1efb

+ 1 - 1
docs/modules/ROOT/pages/servlet/authentication/logout.adoc

@@ -226,7 +226,7 @@ Kotlin::
 ----
 http {
     logout {
-        deleteCookies = "our-custom-cookie"
+        deleteCookies("our-custom-cookie")
     }
 }
 ----