summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/search/store/getters.js
blob: 650af5fa55a79cc57ff28c44b84448f918da4c56 (plain)
1
2
3
4
5
6
7
8
9
import { GROUPS_LOCAL_STORAGE_KEY, PROJECTS_LOCAL_STORAGE_KEY } from './constants';

export const frequentGroups = (state) => {
  return state.frequentItems[GROUPS_LOCAL_STORAGE_KEY];
};

export const frequentProjects = (state) => {
  return state.frequentItems[PROJECTS_LOCAL_STORAGE_KEY];
};