We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af10c5f commit 922dbc6Copy full SHA for 922dbc6
identity-infrastructure/src/main/java/life/qbic/identity/infrastructure/UserJpaRepository.java
@@ -43,13 +43,6 @@ public List<User> findUsersByEmailAddress(EmailAddress emailAddress) {
43
@Override
44
public void save(User user) {
45
userRepo.save(user);
46
- // TODO: we need to broadcast the user registered event and consume it in the project management
47
- // domain, such that need to add the SID entry, which is project management concern
48
- //
49
- // if (!sidRepository.existsBySidEqualsIgnoreCaseAndPrincipalEquals(user.emailAddress().get(),
50
- // true)) {
51
- // addSid(user.id().get(), true);
52
- // }
53
}
54
55
0 commit comments