logout
This commit is contained in:
parent
d1f737afdd
commit
9e9a4b3897
@ -7,6 +7,9 @@ const caller = (url = '/api') => {
|
||||
};
|
||||
|
||||
const API = {
|
||||
logout() {
|
||||
return caller().post('/auth/logout');
|
||||
},
|
||||
login(data) {
|
||||
return caller().post('/auth/login', data);
|
||||
},
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { createContext, useState, useContext } from 'react';
|
||||
import API from '../services/api';
|
||||
|
||||
const AuthContext = createContext();
|
||||
|
||||
@ -11,6 +12,7 @@ const AuthProvider = ({ children }) => {
|
||||
const logout = () => {
|
||||
localStorage.removeItem('user');
|
||||
window.location.href = '/auth';
|
||||
API.logout();
|
||||
};
|
||||
|
||||
const useAuth = () => useContext(AuthContext);
|
||||
|
Loading…
Reference in New Issue
Block a user