Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@ public ResponseEntity<Session> login(@RequestBody LoginDTO loginDto) throws Logi
public ResponseEntity<String> logout(@RequestParam(name = "userId") Integer userId, @RequestParam(name = "userType") UserType userType)throws LoginException{
String response = lServices.logout(userId, userType);
return new ResponseEntity<String>(response, HttpStatus.ACCEPTED);

// start implemetig jwt token
}
}