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

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