Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LabraCORE
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
LabraCORE
Merge requests
!69
Add enrollability status to the edition create DTO
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add enrollability status to the edition create DTO
62-edition-endpoint-add-enrollability
into
development
Overview
0
Commits
1
Pipelines
9
Changes
2
Merged
Add enrollability status to the edition create DTO
Chris Lemaire
requested to merge
62-edition-endpoint-add-enrollability
into
development
May 22, 2020
Overview
0
Commits
1
Pipelines
9
Changes
2
Closes
#62 (closed)
0
0
Merge request reports
Compare
development
version 3
f10a536c
May 22, 2020
version 2
a749ee29
May 22, 2020
version 1
2a8f81a6
May 22, 2020
development (base)
and
latest version
latest version
6be5072a
1 commit,
May 25, 2020
version 3
f10a536c
1 commit,
May 22, 2020
version 2
a749ee29
1 commit,
May 22, 2020
version 1
2a8f81a6
1 commit,
May 22, 2020
2 files
+
6
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
src/main/java/nl/tudelft/labracore/dto/create/EditionCreateDTO.java
+
4
−
0
View file @ 6be5072a
Edit in single-file editor
Open in Web IDE
Show full file
@@ -26,6 +26,7 @@ import nl.tudelft.labracore.dto.id.CourseIdDTO;
import
nl.tudelft.labracore.model.Cohort
;
import
nl.tudelft.labracore.model.Course
;
import
nl.tudelft.labracore.model.Edition
;
import
nl.tudelft.labracore.model.EnrollabilityStatus
;
import
nl.tudelft.librador.dto.create.CreateWithIds
;
import
nl.tudelft.librador.dto.id.IdMapperBuilder
;
@@ -45,6 +46,9 @@ public class EditionCreateDTO extends CreateWithIds<Edition> {
@NotNull
private
CohortIdDTO
cohort
;
@NotNull
private
EnrollabilityStatus
enrollability
;
@Override
public
Class
<
Edition
>
clazz
()
{
return
Edition
.
class
;
Loading