mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-23 11:29:10 -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;
|