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

export const push = ({ commit }, fullPath) => {
  commit(types.PUSH, fullPath);
};