Skip to content

Commit fee2d73

Browse files
committed
BSR
1 parent a706923 commit fee2d73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/invite/crm/CRMController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ public CRMController(@Value("${crm.collab-person-prefix}") String collabPersonPr
9797
this.mailBox = mailBox;
9898
this.manage = manage;
9999
this.userRoleAuditService = userRoleAuditService;
100+
this.invitationRepository = invitationRepository;
100101
Map<String, Map<String, Object>> crmConfigRaw = objectMapper.readValue(crmConfigResource.getInputStream(), new TypeReference<>() {
101102
});
102103
this.crmConfig = crmConfigRaw.entrySet().stream()
@@ -110,7 +111,6 @@ public CRMController(@Value("${crm.collab-person-prefix}") String collabPersonPr
110111
crmConfigEntry -> crmConfigEntry
111112
));
112113
LOG.debug(String.format("Parsed %s entries from %s", this.crmConfig.size(), crmConfigResource.getDescription()));
113-
this.invitationRepository = invitationRepository;
114114
}
115115

116116
@PostMapping("")

0 commit comments

Comments
 (0)