فهرست منبع

Fix logout code snippet for Kotlin: Corrected deleteCookies syntax

mskim 8 ماه پیش
والد
کامیت
0e3cfd1efb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      docs/modules/ROOT/pages/servlet/authentication/logout.adoc

+ 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")
     }
 }
 ----