summaryrefslogtreecommitdiffstats
path: root/src/app/configurableViews/ConfigurableViewConstants.js
blob: 202dd187f5b790c454bc67f9b225cc6f38c3d6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
import keyMirror from 'utils/KeyMirror.js';
import {BASE_URL} from 'app/networking/NetworkConstants.js';

export const configurableViewsActionTypes = keyMirror({
  CONFIGURABLE_VIEWS_CONFIG_RECEIVED: null,
  CONFIGURABLE_VIEWS_DATA_RECEIVED: null,
  CUSTOM_ROUTES: null,
  CUSTOM_COMPONENTS_RECEIVED: null
});

export const GET_LAYOUTS_URL = BASE_URL + '/layouts';