Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_import.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a51a2a2242fbac4c1f37be8d0c3e010624c28101 (plain)
1
2
3
4
5
6
7
import { visitUrl } from './lib/utils/url_utility';

export default function projectImport() {
  setTimeout(() => {
    visitUrl(window.location.href);
  }, 5000);
}