mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
Fix CSS. Updated pages.
This commit is contained in:
parent
0f12226401
commit
3720a5a2fc
12 changed files with 71 additions and 71 deletions
|
|
@ -1,34 +1,5 @@
|
|||
'use client';
|
||||
import { useEffect } from 'react';
|
||||
import { useRouter } from 'next/router';
|
||||
import useApi from 'components/hooks/useApi';
|
||||
import { setUser } from 'store/app';
|
||||
import { removeClientAuthToken } from 'lib/client';
|
||||
import Logout from './Logout';
|
||||
|
||||
async function getDisabled() {
|
||||
return !!(process.env.DISABLE_LOGIN || process.env.CLOUD_MODE);
|
||||
}
|
||||
|
||||
export default async function LogoutPage() {
|
||||
const disabled = await getDisabled();
|
||||
const router = useRouter();
|
||||
const { post } = useApi();
|
||||
|
||||
useEffect(() => {
|
||||
async function logout() {
|
||||
await post('/auth/logout');
|
||||
}
|
||||
|
||||
if (!disabled) {
|
||||
removeClientAuthToken();
|
||||
|
||||
logout();
|
||||
|
||||
router.push('/login');
|
||||
|
||||
return () => setUser(null);
|
||||
}
|
||||
}, [disabled, router, post]);
|
||||
|
||||
return null;
|
||||
export default function () {
|
||||
return <Logout />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue