mirror of https://github.com/franjsco/tick3t
feat: add auth module
This commit is contained in:
parent
053b47e72d
commit
c2bb646bcf
|
@ -0,0 +1,22 @@
|
|||
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;
|
||||
};
|
Loading…
Reference in New Issue