Skip to content
13 changes: 13 additions & 0 deletions src/routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -954,6 +954,7 @@ export default (
<Route path="/support/login" component={SupportLogin} />
<Route path="/support/dashboard" component={SupportDashboard} />
<Route path="/support/log/:studentId" component={SupportLogViewer} />
{/* PR Routes */}
<ProtectedRoute
path="/pr-team-analytics/popular-prs"
exact
Expand All @@ -965,6 +966,18 @@ export default (
component={PRGradingDashboard}
fallback
/>
<ProtectedRoute path="/pr-dashboard/overview" exact component={PRDashboardOverview} />
<ProtectedRoute
path="/pr-dashboard/promotion-eligibility"
exact
component={PRDashboardPromotionEligibility}
/>
<ProtectedRoute
path="/pr-dashboard/top-reviewed-prs"
exact
component={PRDashboardTopReviewedPRs}
/>
<ProtectedRoute path="/pr-dashboard/details" exact component={PRDashboardDetails} />
<Route path="*" component={NotFoundPage} />
</Switch>
</>
Expand Down
Loading