Commit 9be90562 authored by Josh Ji's avatar Josh Ji

post method

parent 1756567e
Pipeline #3652 failed with stage
......@@ -7,6 +7,7 @@ import org.springframework.web.bind.annotation.*;
@Controller
public class Profile {
@GetMapping("/profile")
@PostMapping("/profile")
public String profile(Model model, @RequestParam("id_from_idp") String id_from_idp){
model.addAttribute("id_from_idp", id_from_idp);
return "profile";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment