Skip to content
Snippets Groups Projects
Commit 1c45556e authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Re-added method that has gone away while merging

parent 23b6d2dc
No related merge requests found
......@@ -18,6 +18,7 @@
*/
package de.thm.arsnova.controller;
import java.util.List;
import java.util.UUID;
import javax.servlet.http.HttpServletResponse;
......@@ -154,4 +155,20 @@ public class SessionController extends AbstractController {
return url.toString();
}
@RequestMapping(value="/mySessions", method=RequestMethod.GET)
@ResponseBody
public List<Session> getMySession(HttpServletResponse response) {
String username = userService.getUser(SecurityContextHolder.getContext().getAuthentication()).getUsername();
if(username == null) {
response.setStatus(HttpStatus.NOT_FOUND.value());
return null;
}
List<Session> sessions = sessionService.getMySessions(username);
if (sessions == null || sessions.isEmpty()) {
response.setStatus(HttpStatus.NOT_FOUND.value());
return null;
}
return sessions;
}
}
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