teamReleaseCounts.js 521 B

12345678910111213141516171819202122232425262728
  1. export function TeamReleaseCounts() {
  2. return {
  3. release_counts: {
  4. '2021-03-11': 1,
  5. '2021-03-12': 2,
  6. '2021-03-13': 1,
  7. '2021-03-14': 0,
  8. '2021-03-15': 0,
  9. '2021-03-16': 0,
  10. '2021-03-17': 0,
  11. '2021-03-18': 0,
  12. '2021-03-19': 0,
  13. '2021-03-20': 1,
  14. '2021-03-21': 0,
  15. '2021-03-22': 1,
  16. '2021-03-23': 0,
  17. '2021-03-24': 0,
  18. },
  19. project_avgs: {
  20. 123: 3,
  21. 234: 4,
  22. },
  23. last_week_totals: {
  24. 123: 2,
  25. 234: 4,
  26. },
  27. };
  28. }