Source

overview-actions/satellite-group-overview-actions.js

const prefix = 'overview/satellite-groups';

const OPEN_SATELLITE_GROUP = `${prefix}/OPEN_SATELLITE_GROUP`;

/**
 * Provides actions to manipulate with satellite group overview screen.
 *
 * @module overview/satellite-groups
 */
export default {
    OPEN_SATELLITE_GROUP,
    /**
     * Fetches the information about the satellite group.
     *
     * @param {string} satelliteGroupId - Satellite group CI Id
     * @property {string} type - OPEN_SATELLITE_GROUP
     */
    openSatelliteGroup: (satelliteGroupId) => ({
        satelliteGroupId,
        type: OPEN_SATELLITE_GROUP
    })
};