Skip to content

Commit f949178

Browse files
committed
Add missing method call in authorization docs
1 parent e6bea1c commit f949178

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/modules/ROOT/pages/servlet/authorization/architecture.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ static RoleHierarchy roleHierarchy() {
256256
return RoleHierarchyImpl.withDefaultRolePrefix()
257257
.role("ADMIN").implies("STAFF")
258258
.role("STAFF").implies("USER")
259-
.role("USER").implies("GUEST");
259+
.role("USER").implies("GUEST")
260+
.build();
260261
}
261262
262263
// and, if using method security also add

0 commit comments

Comments
 (0)