mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
import { getItem, setItem, removeItem } from 'next-basics';
|
|
import { AUTH_TOKEN } from './constants';
|
|
|
|
export function getClientAuthToken() {
|
|
return getItem(AUTH_TOKEN);
|
|
}
|
|
|
|
export function setClientAuthToken(token) {
|
|
setItem(AUTH_TOKEN, token);
|
|
}
|
|
|
|
export function removeClientAuthToken() {
|
|
removeItem(AUTH_TOKEN);
|
|
}
|