|
|
@ -1,8 +1,15 @@ |
|
|
|
import Cookies from 'js-cookie'; |
|
|
|
import Cookies from 'js-cookie'; |
|
|
|
import { TOKEN_COOKIE_NAME } from "../../lib/jwt"; |
|
|
|
import { TOKEN_COOKIE_NAME } from '../../lib/jwt'; |
|
|
|
|
|
|
|
|
|
|
|
export function logout() { |
|
|
|
export function logout() { |
|
|
|
Cookies.remove(TOKEN_COOKIE_NAME); |
|
|
|
Cookies.remove(TOKEN_COOKIE_NAME); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @FIXME: fix the domain name in the cookie created by the API
|
|
|
|
|
|
|
|
Cookies.remove(TOKEN_COOKIE_NAME, { |
|
|
|
|
|
|
|
path: '/', |
|
|
|
|
|
|
|
domain: 'api.roadmap.sh', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
// Reloading will automatically redirect the user if required
|
|
|
|
// Reloading will automatically redirect the user if required
|
|
|
|
window.location.reload(); |
|
|
|
window.location.reload(); |
|
|
|
} |
|
|
|
} |
|
|
|