mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-05-16 04:58:25 -04:00
11 lines
214 B
JavaScript
Vendored
11 lines
214 B
JavaScript
Vendored
// Service to check authentication for user and to signOut
|
|
const Auth = {
|
|
signOut() {
|
|
localStorage.removeItem("token");
|
|
},
|
|
isAuth() {
|
|
return localStorage.getItem("token");
|
|
}
|
|
};
|
|
export default Auth;
|