source: src/main/java/com/example/baziproekt/web/LogoutController.java@ 0e4d807

Last change on this file since 0e4d807 was 0e4d807, checked in by Ivona <ivonatapshanovska@…>, 10 months ago

Initial commit

  • Property mode set to 100644
File size: 486 bytes
Line 
1package com.example.baziproekt.web;
2
3
4import org.springframework.stereotype.Controller;
5import org.springframework.web.bind.annotation.GetMapping;
6import org.springframework.web.bind.annotation.RequestMapping;
7
8import javax.servlet.http.HttpServletRequest;
9
10@Controller
11@RequestMapping("/logout")
12public class LogoutController {
13
14 @GetMapping
15 public String logout(HttpServletRequest request) {
16 request.getSession().invalidate();
17 return "redirect:/login";
18 }
19}
Note: See TracBrowser for help on using the repository browser.