Commit c869477f authored by Josh Ji's avatar Josh Ji

post method

parent 9be90562
Pipeline #3653 failed with stage
......@@ -6,10 +6,13 @@ 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";
}
@GetMapping("/profile")
public String profile2(){
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