lbry-desktop/ui/redux/actions/blocked.js
2020-06-23 16:01:20 -04:00

9 lines
183 B
JavaScript

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