Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix some bugs.
  • Loading branch information
hzxie committed Oct 30, 2021
1 parent 208975c commit 74c17ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion web/pom.xml
Expand Up @@ -92,7 +92,7 @@
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
<version>8.0.27</version>
</dependency>
<!-- JSON Support -->
<dependency>
Expand Down
Expand Up @@ -438,6 +438,8 @@ public ModelAndView dashboardView(HttpServletRequest request, HttpServletRespons
view.addObject("user", user);
view.addAllObjects(userService.getUserMetaUsingUid(user));
view.addObject("submissions", submissionService.getSubmissionOfUser(userId));
view.addObject("csrfToken", CsrfProtector.getCsrfToken(session));

return view;
}

Expand Down

0 comments on commit 74c17ad

Please sign in to comment.