export const clearUnreadMessages = (chatroom_subscription) => dispatch => (
        ApiUtil.clearUnreadMessages(chatroom_subscription)
                .then(chatroomId => dispatch(receiveChatroom(chatroomId)),
                err => (dispatch(receiveChatroomErrors(err.responseJSON)))       
        )