gamebrary/src/store/state.js

26 lines
423 B
JavaScript
Raw Normal View History

2018-10-19 05:15:28 +00:00
export default {
2019-11-08 19:56:03 +00:00
user: null,
tags: {},
notes: {},
2021-03-02 06:19:12 +00:00
profile: {},
releases: [],
progresses: {},
2019-12-16 19:05:52 +00:00
dragging: false,
settings: {},
2021-03-02 06:19:19 +00:00
results: [], // TODO: remove from store
2019-11-08 19:56:03 +00:00
games: {},
2020-08-18 18:56:10 +00:00
boards: [],
publicBoards: [],
2020-08-18 18:56:10 +00:00
board: {},
boardGames: [],
2021-02-22 16:29:37 +00:00
activeGame: {
2020-11-03 22:48:49 +00:00
gameId: null,
list: null,
},
wallpapers: [],
2020-09-09 20:38:52 +00:00
platform: null,
2020-09-23 23:01:39 +00:00
sessionExpired: false,
2020-10-15 23:15:09 +00:00
twitchToken: null,
2020-11-22 04:44:00 +00:00
notification: false,
2018-10-19 05:15:28 +00:00
};