parent
564102ce89
commit
a988237eb4
3 changed files with 13 additions and 2 deletions
9
web_src/js/modules/worker.js
Normal file
9
web_src/js/modules/worker.js
Normal file
|
@ -0,0 +1,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}/`;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue