summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/application_settings/index.js
blob: e3c6b0f6f5ba17d3bd34ccdb3cea208a08bf27ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import initVariableList from '~/ci_variable_list';
import projectSelect from '~/project_select';
import initSearchSettings from '~/search_settings';
import selfMonitor from '~/self_monitor';
import initSettingsPanels from '~/settings_panels';

if (gon.features?.ciInstanceVariablesUi) {
  initVariableList('js-instance-variables');
}
selfMonitor();
// Initialize expandable settings panels
initSettingsPanels();
projectSelect();
initSearchSettings();