11 lines
474 B
JavaScript
11 lines
474 B
JavaScript
import { integrationLevels } from '~/integrations/constants';
|
|
|
|
export const isInheriting = (state) => (state.defaultState === null ? false : !state.override);
|
|
|
|
export const isProjectLevel = (state) =>
|
|
state.customState.integrationLevel === integrationLevels.PROJECT;
|
|
|
|
export const propsSource = (state, getters) =>
|
|
getters.isInheriting ? state.defaultState : state.customState;
|
|
|
|
export const currentKey = (state, getters) => (getters.isInheriting ? 'admin' : 'custom');
|