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
!171
Draft: Resolve "Implement extra work declaration workflow"
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Draft: Resolve "Implement extra work declaration workflow"
27-implement-extra-work-declaration-workflow
into
tam-refactor
Overview
0
Commits
17
Pipelines
1
Changes
71
Closed
Draft: Resolve "Implement extra work declaration workflow"
Marko Matušovič
requested to merge
27-implement-extra-work-declaration-workflow
into
tam-refactor
Jun 8, 2021
Overview
0
Commits
17
Pipelines
1
Changes
71
Closes
#27 (closed)
0
0
Merge request reports
Compare
tam-refactor
tam-refactor (base)
and
latest version
latest version
8c80b430
17 commits,
Jun 8, 2021
71 files
+
5756
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
71
src/main/java/nl/tudelft/tam/config/LibradorConfiguration.java
+
3
−
1
View file @ 8c80b430
Show full file
@@ -19,6 +19,8 @@ package nl.tudelft.tam.config;
import
nl.tudelft.librador.EnableLibrador
;
import
nl.tudelft.librador.dto.id.IdMapperBuilder
;
import
nl.tudelft.tam.dto.id.ProfileIdDTO
;
import
nl.tudelft.tam.model.Profile
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
@@ -31,7 +33,7 @@ public class LibradorConfiguration {
public
IdMapperBuilder
idMapperBuilder
()
{
IdMapperBuilder
builder
=
new
IdMapperBuilder
();
//
builder.register(
AssignmentNot
eIdDTO.class,
AssignmentNot
e.class);
builder
.
register
(
Profil
eIdDTO
.
class
,
Profil
e
.
class
);
return
builder
;
}
Loading