Skip to content

Commit

Permalink
Polish gh-381
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrandja committed Aug 9, 2021
1 parent 115a78d commit ea7c689
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -68,7 +68,7 @@ public SecurityFilterChain authorizationServerSecurityFilterChain(HttpSecurity h
public RegisteredClientRepository registeredClientRepository(JdbcTemplate jdbcTemplate) {
RegisteredClient registeredClient = RegisteredClient.withId(UUID.randomUUID().toString())
.clientId("messaging-client")
.clientSecret("{noop}secret")
.clientSecret("secret")
.clientAuthenticationMethod(ClientAuthenticationMethod.CLIENT_SECRET_BASIC)
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE)
.authorizationGrantType(AuthorizationGrantType.REFRESH_TOKEN)
Expand Down

0 comments on commit ea7c689

Please sign in to comment.