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

actions.js « embed_group « stores « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbe0950d9547522766b4bfab6503dbf0f694012c (plain)
1
2
3
4
5
import * as types from './mutation_types';

export const addModule = ({ commit }, data) => commit(types.ADD_MODULE, data);

export default () => {};