export const toggleVisibleGameResult = gameId => {
  channel
    .push('tournament:toggle_match_visible', { game_id: gameId })
    .receive('error', error => console.error(error));
};