Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « index « store « user_lists « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0658d23cffc2f62db0997f77dc54247b12d5d68c (plain)
1
2
3
4
5
6
7
8
9
10
export default ({ projectId }) => ({
  userLists: [],
  alerts: [],
  count: 0,
  pageInfo: {},
  isLoading: true,
  hasError: false,
  options: {},
  projectId,
});