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