Skip to content

Commit

Permalink
Merge branch '6.1.x' into 6.2.x
Browse files Browse the repository at this point in the history
Closes gh-14972
  • Loading branch information
jzheaux committed Apr 26, 2024
2 parents f9681d9 + 2477c22 commit af4a697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/servlet/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public class DefaultSecurityConfig {
InMemoryUserDetailsManager inMemoryUserDetailsManager() { <2>
String generatedPassword = // ...;
return new InMemoryUserDetailsManager(User.withUsername("user")
.password(generatedPassword).roles("ROLE_USER").build());
.password(generatedPassword).roles("USER").build());
}
@Bean
Expand Down

0 comments on commit af4a697

Please sign in to comment.