BerniWittmann/cape-frontend

View on GitHub
src/vuex/modules/contextFactor/mutation-types.js

Summary

Maintainability
A
0 mins
Test Coverage
/* ============
 * Mutation types for the contextFactor module
 * ============
 *
 * The mutation types that are available
 * on the contextFactor module.
 */

export const STORE = 'STORE'
export const UPDATE = 'UPDATE'
export const SET_ACTIVE = 'SET_ACTIVE'
export const ADD = 'ADD'
export const REMOVE = 'REMOVE'

export default {
  STORE,
  UPDATE,
  SET_ACTIVE,
  ADD,
  REMOVE
}