Skip to content

Commit 922dbc6

Browse files
committed
remove sid storage that was replaced
1 parent af10c5f commit 922dbc6

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

identity-infrastructure/src/main/java/life/qbic/identity/infrastructure/UserJpaRepository.java

-7
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,6 @@ public List<User> findUsersByEmailAddress(EmailAddress emailAddress) {
4343
@Override
4444
public void save(User user) {
4545
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-
// }
5346
}
5447

5548
@Override

0 commit comments

Comments
 (0)