/** * Action type to signal the deletion of a list entry. * * { * type: DELETE_RECENT_LIST_ENTRY, * entryId: Object * } */ export const DELETE_RECENT_LIST_ENTRY = 'DELETE_RECENT_LIST_ENTRY'; /** * Action type to signal a new addition to the list. * * { * type: _STORE_CURRENT_CONFERENCE, * locationURL: Object * } * * @protected */ export const _STORE_CURRENT_CONFERENCE = '_STORE_CURRENT_CONFERENCE'; /** * Action type to signal that a new conference duration info is available. * * { * type: _UPDATE_CONFERENCE_DURATION, * locationURL: Object * } * * @protected */ export const _UPDATE_CONFERENCE_DURATION = '_UPDATE_CONFERENCE_DURATION';