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

actions.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: 849067599f20c86c6e993f5e219f7cce5a56dc58 (plain)
1
2
3
4
5
6
import * as types from './mutation_types';

// eslint-disable-next-line import/prefer-default-export
export const push = ({ commit }, fullPath) => {
  commit(types.PUSH, fullPath);
};