Transform your team’s productivity and reduce cost with Scrum Bot Streamline your team’s communication and stay connected across timezones with Scrumrobo’s automation of standups and daily reporting Smart reporting Quickly assess your team’s blockers, progress, and goal achievement with Scrumrobo’s intuitive reporting tools Reduce obstacles Eliminate time-consuming meetings, routine communication, and distractions with Scrumrobo Features

// add a cronjob for this import fetch from ‘node-fetch’; // for lower node versions const getOrder = () => { const users = [“Jim”, “Pam” “Dwight”]; // names of users let shuffled = users .map(value => ({ value, sort: Math.random() })) .sort((a, b) => a.sort – b.sort) .map(({ value }) => `-> ${value}`); return