summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/clusters/index.js
blob: 9f466e0d60a1268ed56346a4a87f46bc64e45459 (plain)
1
2
3
4
5
6
7
import initCreateCluster from '~/create_cluster/init_create_cluster';
import initIntegrationForm from '~/clusters/forms/show/index';

document.addEventListener('DOMContentLoaded', () => {
  initCreateCluster(document, gon);
  initIntegrationForm();
});