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

mutations.js « router « 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: 471cace314c35b2d3a677570fa2312b51ac96640 (plain)
1
2
3
4
5
6
7
import * as types from './mutation_types';

export default {
  [types.PUSH](state, fullPath) {
    state.fullPath = fullPath;
  },
};