We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
@Authenticated @DoPost("/logout") public Redirect logoutPost( HttpServletRequest request, @AdminId long adminId ) { adminService.removeAdminAccessToken(adminId); return redirectToLogin(request); } public static Redirect redirectToLogin(HttpServletRequest request) { Cookie tokenCookie = new Cookie("adminAccessToken", ""); tokenCookie.setPath("/"); tokenCookie.setMaxAge(0); Cookie tokenCookieExpiredAt = new Cookie("adminAccessTokenExpiredAt", "0"); tokenCookieExpiredAt.setMaxAge(0); tokenCookieExpiredAt.setPath("/"); return Redirect.builder().uri(HttpRequests.addLanguageToUri(request, "/login")).addCookie(tokenCookie).addCookie(tokenCookieExpiredAt).build(); }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click