feat(domain): add RemoteFollowAccepted, RemoteFollowRejected, ActorMoved events

This commit is contained in:
2026-05-28 02:19:46 +02:00
parent 84c66dd461
commit e338254099
3 changed files with 72 additions and 0 deletions

View File

@@ -63,6 +63,18 @@ pub enum DomainEvent {
ProfileUpdated {
user_id: UserId,
},
RemoteFollowAccepted {
local_user_id: UserId,
remote_actor_url: String,
},
RemoteFollowRejected {
local_user_id: UserId,
remote_actor_url: String,
},
ActorMoved {
user_id: UserId,
new_actor_url: String,
},
MentionReceived {
thought_id: ThoughtId,
mentioned_user_id: UserId,