feat: UserUnblocked + UserRegistered events, fix unblock_user and register signatures

This commit is contained in:
2026-05-14 11:06:36 +02:00
parent f0b87311e3
commit 1127a5946f
5 changed files with 61 additions and 3 deletions

View File

@@ -14,6 +14,8 @@ pub enum DomainEvent {
FollowRejected { follower_id: UserId, following_id: UserId },
Unfollowed { follower_id: UserId, following_id: UserId },
UserBlocked { blocker_id: UserId, blocked_id: UserId },
UserUnblocked { blocker_id: UserId, blocked_id: UserId },
UserRegistered { user_id: UserId },
}
pub struct EventEnvelope {