18 lines
413 B
Java
18 lines
413 B
Java
package cc.mrbird.security.controller;
|
|
|
|
import org.springframework.security.core.Authentication;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* @author MrBird
|
|
*/
|
|
@RestController
|
|
public class UserController {
|
|
|
|
@GetMapping("index")
|
|
public Object index(Authentication authentication){
|
|
return authentication;
|
|
}
|
|
}
|