summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/index.js
blob: 37cf345fe77eeb010f04722efa6e87c4d919dcde (plain)
1
2
3
4
5
6
7
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import initTerraformNotification from '~/projects/terraform_notification';
import Project from './project';

new Project(); // eslint-disable-line no-new
new ShortcutsNavigation(); // eslint-disable-line no-new
initTerraformNotification();