import * as types from './actionsTypes';
export function createChannelRequest(data) {
return {
type: types.CREATE_CHANNEL.REQUEST,
data
};
}
export function createChannelSuccess(data) {
type: types.CREATE_CHANNEL.SUCCESS,
export function createChannelFailure(err, isTeam) {
type: types.CREATE_CHANNEL.FAILURE,
err,
isTeam