INNER CODE UNIT · TypeScript
postLogout
flaviuse/mern-authentication · client/src/api/index.ts:12
const postLogout = () => http.post<void>("/auth/logout");
const postUser = (user: User) => http.post<void>("/user/register", user);
const getConfirmation = (token: string) => http.get<void>(`/auth/confirmation/${token}`);
const resendConfirmation = (email: string) => http.post<void>("/auth/send-confirmation", { email });
const resetRegister = (email: string) => http.post<void>("/user/register/cancel", { email });
const getUser = () => http.get<{ user: User }>("/user");
export {
postLogin,
sendResetPasswordLink,
resetPassword,
postLogout,
postUser,