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 18 19 20 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const STATE_KEY = '@gce/interactions'; export const FETCH_INTERACTIONS = `${STATE_KEY}/fetch-interactions`; export const SET_INTERACTIONS = `${STATE_KEY}/set-interactions`; export const SET_INTERACTION_DETAIL = `${STATE_KEY}/set-interaction-detail`; export const SET_INTERACTIONS_LOADING = `${STATE_KEY}/set-interactions-loading`; export const SET_INTERACTION_DETAIL_LOADING = `${STATE_KEY}/set-interaction-detail-loading`; export const SET_FILTER_SELECTED = `${STATE_KEY}/set-filters-selected`; export const SET_APPLICANT_FILTER = `${STATE_KEY}/set-applicant-filter`; export const FETCH_INTERACTION_DETAIL = `${STATE_KEY}/fetch-interaction-detail`; export const interactionsStatusEnum = { ALL: 'ALL', REQUEST: 'REQUEST', INPROGRESS: 'IN_PROGRESS', DONE: 'DONE', REFUSED: 'REFUSED', }; |