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

state.js « edit « 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: 66fbe3c2ba9343329ababfb5968819973485640d (plain)
1
2
3
4
5
6
7
8
9
import statuses from '../../constants/edit';

export default ({ projectId = '', userListIid = '' }) => ({
  status: statuses.LOADING,
  projectId,
  userListIid,
  userList: null,
  errorMessage: [],
});