13 lines
586 B
JavaScript

import * as agentsReactions from '../../agents/reactions';
import * as calculateReactions from '../../calculate/reactions';
import * as leadOpportunityReactions from '../../lead-opportunity/reactions';
import paymentsReactions from '../../payments/reactions';
export default function injectDefaultReactions(store, apolloClient) {
leadOpportunityReactions.common(store, apolloClient);
leadOpportunityReactions.urls(store, apolloClient);
paymentsReactions(store, apolloClient);
calculateReactions.validation(store, apolloClient);
agentsReactions.common(store, apolloClient);
}