mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
15 lines
322 B
TypeScript
15 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);
|
|
}
|