summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/router/actions.js
blob: 321ac57817fca575d2d39ced19bf1fe7468bf629 (plain)
1
2
3
4
5
import * as types from './mutation_types';

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