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