refactor(welcome): remove generic type from getRoles method
Some checks failed
Quality Check / Tests (pull_request) Successful in 1m0s
Quality Check / Checkstyle Main (pull_request) Successful in 46s
gitea-sonarqube-bot ERROR
Build PR / Build and analyze (pull_request) Successful in 1m53s

This commit is contained in:
Jan Gleytenhoover 2024-10-02 09:39:42 +02:00
parent 9824fbbbfd
commit e5d0bcb84e
Signed by: jank
GPG Key ID: B267751B8AE29EFE

@ -19,7 +19,7 @@ public class WelcomeController {
}
@GetMapping("/roles")
public ResponseEntity<Collection<? extends GrantedAuthority>> getRoles(Authentication authentication) {
public ResponseEntity getRoles(Authentication authentication) {
return ResponseEntity.ok(authentication.getAuthorities());
}