Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TAM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
TAM
Merge requests
!227
Resolve "Add batch number, program and updated from to application export"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Add batch number, program and updated from to application export"
65-add-batch-number-program-and-updated-from-to-application-export
into
dev
Overview
10
Commits
1
Pipelines
18
Changes
20
Merged
Resolve "Add batch number, program and updated from to application export"
Ruben Backx
requested to merge
65-add-batch-number-program-and-updated-from-to-application-export
into
dev
Oct 25, 2022
Overview
10
Commits
1
Pipelines
18
Changes
20
Closes
#65 (closed)
Edited
Nov 18, 2022
by
Ruben Backx
0
0
Merge request reports
Compare
dev
version 7
8b5e552d
Nov 18, 2022
version 6
098f333c
Nov 18, 2022
version 5
2efb87bb
Nov 18, 2022
version 4
1f8bfd5d
Nov 18, 2022
version 3
5c31c9ff
Nov 8, 2022
version 2
e6381fbd
Nov 8, 2022
version 1
a4d58053
Nov 7, 2022
dev (base)
and
latest version
latest version
3ac8cf75
1 commit,
Nov 18, 2022
version 7
8b5e552d
1 commit,
Nov 18, 2022
version 6
098f333c
1 commit,
Nov 18, 2022
version 5
2efb87bb
1 commit,
Nov 18, 2022
version 4
1f8bfd5d
1 commit,
Nov 18, 2022
version 3
5c31c9ff
1 commit,
Nov 8, 2022
version 2
e6381fbd
1 commit,
Nov 8, 2022
version 1
a4d58053
1 commit,
Nov 7, 2022
20 files
+
579
−
62
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
src/main/java/nl/tudelft/tam/cache/CourseCacheManager.java
+
1
−
2
View file @ 3ac8cf75
Edit in single-file editor
Open in Web IDE
Show full file
@@ -18,7 +18,6 @@
package
nl.tudelft.tam.cache
;
import
java.util.List
;
import
java.util.stream.Collectors
;
import
nl.tudelft.labracore.api.CourseControllerApi
;
import
nl.tudelft.labracore.api.dto.CourseDetailsDTO
;
@@ -36,7 +35,7 @@ public class CourseCacheManager extends CoreCacheManager<Long, CourseDetailsDTO>
@Override
protected
List
<
CourseDetailsDTO
>
fetch
(
List
<
Long
>
ids
)
{
return
ids
.
stream
().
map
(
id
->
api
.
getCourseById
(
id
).
block
()).
collect
(
Collectors
.
toList
()
);
return
api
.
get
All
Course
s
ById
(
id
s
).
collectList
().
block
(
);
}
@Override
Loading