Grading Boundaries Wrong in Supervisor View #98

Open
tozh4728 wants to merge 6 commits from 97-grading-boundaries-wrong-in-suervisor-view into develop
Showing only changes of commit 3346862694 - Show all commits

View File

@ -270,6 +270,7 @@ public class SupervisorGradingReportPage extends AbstractSupervisorProjectDetail
@Override
protected void onConfigure() {
super.onConfigure();
/*
final Instant expiration = getSession().getMetaData(OAuth.EXPIRATION);
final boolean validToken = expiration != null && expiration.isAfter(Instant.now());
if (!validToken) {
@ -280,5 +281,6 @@ public class SupervisorGradingReportPage extends AbstractSupervisorProjectDetail
final String href = oAuthService.authorizeUrl(null, Set.of("grade:read", "grade:write"));
throw new RedirectToUrlException(href);
}
*/
}
}