summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/integrations/edit/store/state.js
blob: 95c1a2be500027ead16ebd2c7a45207ff221a7ee (plain)
1
2
3
4
5
6
7
8
9
export default ({ adminState = null, customState = {} } = {}) => {
  const override = adminState !== null ? adminState.id !== customState.inheritFromId : false;

  return {
    override,
    adminState,
    customState,
  };
};