summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/feature_flags/store/edit/state.js
blob: ec507532d6a00c024b68cde89a0b4f86fbbf9ce7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { LEGACY_FLAG } from '../../constants';

export default ({ path, endpoint }) => ({
  endpoint,
  path,
  isSendingRequest: false,
  error: [],

  name: null,
  description: null,
  scopes: [],
  isLoading: false,
  hasError: false,
  iid: null,
  active: true,
  strategies: [],
  version: LEGACY_FLAG,
});