-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Add users to group, only the first 10 can be viewed or selected #2130
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## release/1.11.0 #2130 +/- ##
====================================================
- Coverage 35.11% 35.02% -0.09%
- Complexity 1418 1419 +1
====================================================
Files 535 537 +2
Lines 16187 16248 +61
Branches 1037 1041 +4
====================================================
+ Hits 5684 5691 +7
- Misses 10209 10263 +54
Partials 294 294 ☔ View full report in Codecov by Sentry. |
.admin(tuple.get("user_admin", boolean.class)) | ||
.organizationName(tuple.get("user_organization_name", String.class)) | ||
.tags( | ||
Arrays.stream(tuple.get("user_tags", String[].class)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think you can just do Set.of(...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good shot
It's fixed
public static List<UserOutput> execution(TypedQuery<Tuple> query) { | ||
return query.getResultList().stream() | ||
.map( | ||
tuple -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we discussed I think we should avoid that (DB to DTO) but it's not blocking as we need to discuss it as a team
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I code it before our discussion...
We need to talk about it, I will add it to our internal notion
25a0e63
to
1470ff8
Compare
Proposed changes
Related issues
Checklist
Further comments
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...