2
0
Эх сурвалжийг харах

Use Correct Meta-Annotation in Kotlin Sample

Taha Körkem 1 жил өмнө
parent
commit
da65830569

+ 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)
 ----
 ======