summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/router/actions.js
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);
};