mutation-types.js 271 Bytes
 1
 2
 3
 4
 5
 6
 7
 8
 9
// auth.js
export const LOGOUT = 'LOGOUT'
export const SAVE_TOKEN = 'SAVE_TOKEN'
export const FETCH_USER = 'FETCH_USER'
export const FETCH_USER_SUCCESS = 'FETCH_USER_SUCCESS'
export const FETCH_USER_FAILURE = 'FETCH_USER_FAILURE'

// ui.js
export const TOGGLE = 'TOGGLE'