mirror of
https://github.com/romancm/gamebrary
synced 2024-12-22 09:03:08 +00:00
25 lines
423 B
JavaScript
25 lines
423 B
JavaScript
export default {
|
|
user: null,
|
|
tags: {},
|
|
notes: {},
|
|
profile: {},
|
|
releases: [],
|
|
progresses: {},
|
|
dragging: false,
|
|
settings: {},
|
|
results: [], // TODO: remove from store
|
|
games: {},
|
|
boards: [],
|
|
publicBoards: [],
|
|
board: {},
|
|
boardGames: [],
|
|
activeGame: {
|
|
gameId: null,
|
|
list: null,
|
|
},
|
|
wallpapers: [],
|
|
platform: null,
|
|
sessionExpired: false,
|
|
twitchToken: null,
|
|
notification: false,
|
|
};
|