Fix copy/paste bug in CFUAAOAuth2ResourceServerRestController (#8033)

This commit is contained in:
Laust Rud Jacobsen 2019-11-14 20:04:36 +01:00 committed by maibin
parent c5e85a589c
commit 54718d11a6
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public class CFUAAOAuth2ResourceServerRestController {
@GetMapping("/read")
public String read(JwtAuthenticationToken jwtAuthenticationToken) {
return "Hello write: " + jwtAuthenticationToken.getTokenAttributes();
return "Hello read: " + jwtAuthenticationToken.getTokenAttributes();
}
@GetMapping("/write")