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

state.js « index « store « feature_flags « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 488da265b28a2a3baec17b7711116a8ece603bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default ({ endpoint, projectId, unleashApiInstanceId, rotateInstanceIdPath }) => ({
  featureFlags: [],
  alerts: [],
  count: 0,
  pageInfo: {},
  isLoading: true,
  hasError: false,
  endpoint,
  rotateEndpoint: rotateInstanceIdPath,
  instanceId: unleashApiInstanceId,
  isRotating: false,
  hasRotateError: false,
  options: {},
  projectId,
});