SpeciesFileGroup/taxonworks

View on GitHub
app/javascript/vue/tasks/collection_objects/slide_breakdown/store/actions/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
import ActionNames from './actionNames'
import updateSled from './updateSled'
import nuke from './nuke'
import resetStore from './resetStore'

const ActionFunctions = {
  [ActionNames.UpdateSled]: updateSled,
  [ActionNames.Nuke]: nuke,
  [ActionNames.ResetStore]: resetStore
}

export { ActionNames, ActionFunctions }