summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/merge_requests/state.js
blob: 2947b686c1c2399edc6a1275d4a670c083a8c0cd (plain)
1
2
3
4
5
6
7
8
import { scopes, states } from './constants';

export default () => ({
  isLoading: false,
  mergeRequests: [],
  scope: scopes.assignedToMe,
  state: states.opened,
});