Move all ./client files into root as this repository becomes client-based

This commit is contained in:
Xevion
2022-05-12 03:52:39 -05:00
parent 34cfda2e52
commit 3dd281598e
212 changed files with 20 additions and 179 deletions

12
src/mutation_types.js Normal file
View File

@@ -0,0 +1,12 @@
export const types = {
FETCH_EPISODE: 'FETCH_EPISODE',
SET_EPISODE: 'SET_EPISODE',
MERGE_EPISODE: 'MERGE_EPISODE',
MERGE_EPISODES: 'MERGE_EPISODES',
SET_PRELOADED: 'SET_PRELOADED',
PRELOAD_CHARACTER: 'PRELOAD_CHARACTER',
PRELOAD: 'PRELOAD',
SET_CHARACTER: 'SET_CHARACTER',
MERGE_CHARACTER: 'MERGE_CHARACTER',
FETCH_CHARACTER: 'FETCH_CHARACTER'
}