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

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}/`;
}