Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 4x | import { actionType } from '@app/client-util-ngrx';
import { createAction, props } from '@ngrx/store';
import { featureAccessReducerConfig, type IFeatureAccessStateModel } from './feature-access.interface';
export const featureAccessAction = {
initialize: createAction(actionType(featureAccessReducerConfig.featureName, 'init')),
setEnvironment: createAction(
actionType(featureAccessReducerConfig.featureName, 'set environment'),
props<{ payload: IFeatureAccessStateModel['environment'] }>(),
),
setFeatureFlags: createAction(
actionType(featureAccessReducerConfig.featureName, 'setFlags'),
props<{ payload: IFeatureAccessStateModel['featureFlags'] }>(),
),
};
|