summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/settings/stores/mutations.js
blob: 4f32e11ed523be2562705651e2ec51223e228217 (plain)
1
2
3
4
5
6
7
8
import * as types from './mutation_types';

export default {
  [types.SET_INITIAL_STATE](state, initialState) {
    state.helpPagePath = initialState.helpPagePath;
    state.registrySettingsEndpoint = initialState.registrySettingsEndpoint;
  },
};