Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.js « actions « terminal « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
};