2020-07-28 23:09:34 +05:30
|
|
|
import * as types from './mutation_types';
|
|
|
|
|
|
|
|
export const setOverride = ({ commit }, override) => commit(types.SET_OVERRIDE, override);
|
2020-11-24 15:15:51 +05:30
|
|
|
export const setIsSaving = ({ commit }, isSaving) => commit(types.SET_IS_SAVING, isSaving);
|
|
|
|
export const setIsTesting = ({ commit }, isTesting) => commit(types.SET_IS_TESTING, isTesting);
|