Skip to content
Snippets Groups Projects
Commit 9d39f536 authored by srosse's avatar srosse
Browse files

OO-2487: fetch the user with the identity

parent 9a2d0a46
No related branches found
No related tags found
No related merge requests found
......@@ -445,6 +445,7 @@ public class CheckboxManagerImpl implements CheckboxManager {
sb.append("select check from clcheck check")
.append(" inner join fetch check.checkbox box")
.append(" inner join fetch check.identity ident")
.append(" inner join fetch ident.user identUser")
.append(" where box.resName=:resName and box.resId=:resId");
if(StringHelper.containsNonWhitespace(resSubPath)) {
sb.append(" and box.resSubPath=:resSubPath");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment