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