summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit/store/getters.js
blob: b039ee3ba63b8cff406ab8c9b9d5a8631df1d9cd (plain)
1
2
3
4
5
6
7
import { uniq, uniqBy } from 'lodash';

export const joinedBranches = (state) => {
  return uniq(state.branches).sort();
};

export const sortedProjects = (state) => uniqBy(state.projects, 'id').sort();