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

state.js « store « edit « integrations « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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,
  };
};