In the migration to Spring 2, this method lost its get mapping to the IDOR/profile url,breaking the javascript call to that address. (#720)

thanks!
This commit is contained in:
thegoodcrumpets 2019-12-04 12:21:19 +01:00 committed by René Zubcevic
parent c5ec2d40a1
commit 681a20a7c3

View File

@ -36,7 +36,7 @@ public class IDORViewOwnProfile {
@Autowired
UserSessionData userSessionData;
@GetMapping(path = "IDOR/own", produces = {"application/json"})
@GetMapping(path = {"IDOR/own", "IDOR/profile"}, produces = {"application/json"})
@ResponseBody
public Map<String, Object> invoke() {
Map<String,Object> details = new HashMap<>();