summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/terminal/actions/setup.js
blob: 78ad94f8a916fdfd5f1e620ff0da2a7bf46a7c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import * as types from '../mutation_types';

export const init = ({ dispatch }) => {
  dispatch('fetchConfigCheck');
  dispatch('fetchRunnersCheck');
};

export const hideSplash = ({ commit }) => {
  commit(types.HIDE_SPLASH);
};

export const setPaths = ({ commit }, paths) => {
  commit(types.SET_PATHS, paths);
};