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

index.js « protected_tags « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1618e24e492a11fe35010fd04d65ee6f1bd4ff7 (plain)
1
2
3
4
5
6
7
8
9
/* eslint-disable no-unused-vars */

import ProtectedTagCreate from './protected_tag_create';
import ProtectedTagEditList from './protected_tag_edit_list';

$(() => {
  const protectedtTagCreate = new ProtectedTagCreate();
  const protectedtTagEditList = new ProtectedTagEditList();
});