Source

satellite-group-summary/satellite-group-summary-actions.js

import overview from '../overview-actions/satellite-overview-actions';
import deploymentTasks from './satellite-group-summary-deployment-tasks-actions';

const LOAD = 'situationalAwareness/satelliteGroupSummary/LOAD';

/**
 * @module situationalAwareness/satelliteGroupSummary
 */
export default {
    deploymentTasks,
    LOAD,
    /**
     *
     * @param flowId
     * @property {string} type - LOAD
     */
    load: (flowId) => ({flowId, type: LOAD}),
    overview
};