14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
import * as actions from 'constants/channel_action_types';
|
|
|
|
// export action creators
|
|
|
|
export function updateLoggedInChannel (name, shortId, longId) {
|
|
return {
|
|
type: actions.CHANNEL_UPDATE,
|
|
data: {
|
|
name,
|
|
shortId,
|
|
longId,
|
|
},
|
|
};
|
|
};
|