mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 00:49:58 +00:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
// A list of mutation names
|
|
const KEY_NAMES = [
|
|
'UPDATE_CONFIG',
|
|
'SET_MODAL_OPEN',
|
|
'SET_LANGUAGE',
|
|
'UPDATE_ITEM',
|
|
];
|
|
|
|
// Convert array of key names into an object, and export
|
|
const MUTATIONS = {};
|
|
KEY_NAMES.forEach((key) => { MUTATIONS[key] = key; });
|
|
export default MUTATIONS;
|