lbry-desktop/ui/redux/actions/blocked.js

10 lines
183 B
JavaScript
Raw Normal View History

// @flow
import * as ACTIONS from 'constants/action_types';
export const doToggleBlockChannel = (uri: string) => ({
type: ACTIONS.TOGGLE_BLOCK_CHANNEL,
data: {
uri,
},
});