aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/modules/worker.ts
blob: ddc02d7a7d162e684605847ca80dd12c14a222c3 (plain)
1
2
3
4
5
6
7
8
9
import {sleep} from '../utils.ts';

const {appSubUrl} = window.config;

export async function logoutFromWorker() {
  // wait for a while because other requests (eg: logout) may be in the flight
  await sleep(5000);
  window.location.href = `${appSubUrl}/`;
}