1
0
mirror of https://github.com/franjsco/tick3t synced 2025-06-05 22:19:18 +02:00

refactor: remove auth module

This commit is contained in:
Francesco Esposito
2019-07-31 16:07:28 +02:00
parent 9c075469e4
commit 0259b81623

View File

@@ -1,22 +0,0 @@
import { validate } from "../api/authentication";
export const getAuthHeader = () => {
const user = JSON.parse(localStorage.getItem("user"));
return user && user.token ? `Bearer ${user.token}` : "";
};
export const validateUser = () => {
validate().then(json => {
if (!json.success) {
localStorage.removeItem("user");
}
});
};
export const isLogin = () => {
if (localStorage.getItem("user")) {
return true;
}
return false;
};