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

state.js « show « 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: a5780893ccbc8c6c747fd9e885229a2577e07295 (plain)
1
2
3
4
5
6
7
8
9
import { states } from '../../constants/show';

export default ({ projectId = '', userListIid = '' }) => ({
  state: states.LOADING,
  projectId,
  userListIid,
  userIds: [],
  userList: null,
});