gitea源码

12345678910
  1. import {sleep} from '../utils.ts';
  2. const {appSubUrl} = window.config;
  3. export async function logoutFromWorker(): Promise<void> {
  4. // wait for a while because other requests (eg: logout) may be in the flight
  5. await sleep(5000);
  6. window.location.href = `${appSubUrl}/`;
  7. }