Chatwoot/app/javascript/dashboard/store/modules/teams/getters.js
Nithin David Thomas 6a614a520b
chore: Sets up store for teams settings page (#1727)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-02-04 13:19:59 +05:30

12 lines
273 B
JavaScript

export const getters = {
getTeams($state) {
return Object.values($state.records).sort((a, b) => a.id - b.id);
},
getUIFlags($state) {
return $state.uiFlags;
},
getTeam: $state => id => {
const team = $state.records[id];
return team || {};
},
};