summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/settings/ci_cd/show/index.js
blob: b1a1cc2176406367c11aff3df26e2e5c1f740836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import initStaleRunnerCleanupSetting from 'ee_else_ce/group_settings/stale_runner_cleanup';
import initVariableList from '~/ci_variable_list';
import initSharedRunnersForm from '~/group_settings/mount_shared_runners';
import initSettingsPanels from '~/settings_panels';
import initDeployTokens from '~/deploy_tokens';

// Initialize expandable settings panels
initSettingsPanels();
initDeployTokens();

initSharedRunnersForm();
initStaleRunnerCleanupSetting();
initVariableList();