lbry-desktop/ui/redux/actions/blocked.js
2020-07-15 09:52:08 -04:00

10 lines
183 B
JavaScript

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