summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/groups/settings/ci_cd/show/index.js
blob: 184958bd1892e30a1f2eea06f68b5b6f84861ab6 (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/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();