Bläddra i källkod

Use Correct Meta-Annotation in Kotlin Sample

Taha Körkem 1 år sedan
förälder
incheckning
da65830569
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      docs/modules/ROOT/pages/servlet/authorization/method-security.adoc

+ 1 - 1
docs/modules/ROOT/pages/servlet/authorization/method-security.adoc

@@ -955,7 +955,7 @@ Kotlin::
 @Target(ElementType.METHOD, ElementType.TYPE)
 @Retention(RetentionPolicy.RUNTIME)
 @PreAuthorize("hasRole('{value}')")
-annotation class IsAdmin(val value: String)
+annotation class HasRole(val value: String)
 ----
 ======