summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/project_import_gitlab_project.js
blob: d2c7d77bb2d5782c7f5a1ec02e835184c4d90ce2 (plain)
1
2
3
4
5
6
7
8
import { getParameterValues } from '../lib/utils/url_utility';

export default () => {
  const path = getParameterValues('path')[0];

  // get the path url and append it in the inputS
  $('.js-path-name').val(path);
};