aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/lib/auth.ts
blob: 436ec66951bb0cda7e910b14f4a410eb1face40f (plain)
1
2
3
4
5
6
7
export function set_session_token(token: string) {
    window.localStorage.setItem('session', token);
}

export function get_session_token(): string | null {
    return window.localStorage.getItem('session');
}