2018-01-24 20:24:49 +01:00
|
|
|
import * as actions from 'constants/channel_action_types';
|
2018-01-18 18:33:26 +01:00
|
|
|
|
|
|
|
// export action creators
|
|
|
|
|
|
|
|
export function updateLoggedInChannel (name, shortId, longId) {
|
|
|
|
return {
|
|
|
|
type: actions.CHANNEL_UPDATE,
|
|
|
|
name,
|
|
|
|
shortId,
|
|
|
|
longId,
|
|
|
|
};
|
|
|
|
};
|