HackSC / odyssey

A hackathon management platform, built by HackSC
https://dashboard.hacksc.com
MIT License
9 stars 2 forks source link

Have zoom link be manageable by the judges on the /passJudgment page #532

Open refcell opened 3 years ago

refcell commented 3 years ago

The judging schedule should allow judges to input a zoom link that is synced with db so teams can see these links on their dashboard.

refcell commented 3 years ago

What the judges currently see: https://github.com/HackSC/odyssey/blob/staging/pages/admin/passJudgment.tsx#L154-L157

<TimeCardLink>
  {item.zoomLink
    ? item.zoomLink
    : "This team has not been assigned a zoom link. Please reach out to the organizers."}
  {/* 
    // TODO: Add Input for judge to enter link for zoom???
    // TODO: How do we assign judges zoom links?
    */}
</TimeCardLink>