first-commit
This commit is contained in:
9
web_src/js/modules/worker.ts
Normal file
9
web_src/js/modules/worker.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import {sleep} from '../utils.ts';
|
||||
|
||||
const {appSubUrl} = window.config;
|
||||
|
||||
export async function logoutFromWorker(): Promise<void> {
|
||||
// wait for a while because other requests (eg: logout) may be in the flight
|
||||
await sleep(5000);
|
||||
window.location.href = `${appSubUrl}/`;
|
||||
}
|
Reference in New Issue
Block a user