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

index.js « sast « modules « store « security_reports « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d5af1d4fe56711309ad84b80bb32ac9185fe003 (plain)
1
2
3
4
5
6
7
8
9
10
import * as actions from './actions';
import mutations from './mutations';
import state from './state';

export default {
  namespaced: true,
  state,
  mutations,
  actions,
};