traxxx/assets/js/auth/getters.js

9 lines
175 B
JavaScript
Raw Normal View History

2021-03-15 02:30:47 +00:00
function favoritesStash(state) {
2021-11-20 22:59:15 +00:00
return state.user.stashes.find((stash) => stash.slug === 'favorites');
2021-03-15 02:30:47 +00:00
}
module.exports = {
favoritesStash,
favorites: favoritesStash,
};