Files
Atay-Makhzan/web_src/js/modules/worker.js
T

10 lines
259 B
JavaScript
Raw Normal View History

2024-04-30 23:35:42 +08:00
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}/`;
}