This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
LF8/src/main/java/de/szut/lf8_starter/welcome/WelcomeController.java
Jan Klattenhoff a04a180712
All checks were successful
Quality Check / Tests (push) Successful in 1m1s
Quality Check / Checkstyle Main (push) Successful in 46s
Build / Build and analyze (push) Successful in 1m56s
Release / Release (push) Successful in 38s
refactor: Fix some code smells (!26)
Reviewed-on: #26
Reviewed-by: Phan Huy Tran <ptran@noreply.localhost>
Co-authored-by: Jan Klattenhoff <jan@kjan.de>
Co-committed-by: Jan Klattenhoff <jan@kjan.de>
2024-10-02 07:48:32 +00:00

25 lines
743 B
Java

package de.szut.lf8_starter.welcome;
import org.springframework.http.ResponseEntity;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Collection;
@RestController
public class WelcomeController {
@GetMapping("/welcome")
public String welcome() {
return "welcome to lf8_starter";
}
@GetMapping("/roles")
public ResponseEntity<Collection<GrantedAuthority>> getRoles(Authentication authentication) {
return ResponseEntity.ok((Collection<GrantedAuthority>) authentication.getAuthorities());
}
}