mirror of
https://github.com/franjsco/tick3t
synced 2025-06-05 22:19:18 +02:00
feat: add auth module
This commit is contained in:
22
src/utils/auth.js
Normal file
22
src/utils/auth.js
Normal file
@@ -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;
|
||||
};
|
Reference in New Issue
Block a user