Add placeholder user for events by unknown actors

This commit is contained in:
Melody Becker 2025-05-22 15:22:54 +02:00
parent db85e831d9
commit b01f60d273
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
3 changed files with 82 additions and 1 deletions

View file

@ -8,6 +8,9 @@ const (
// where multiple releases in a day are required
Version = "0.0.1 pre-alpha"
// Username for the server actor
ServerActorName = "server.actor"
ServerActorName = "server.actor"
// Username for the placeholder actor where the actual actor is unknown
// Examples include likes, boosts and followers / following
UnknownActorName = "unknown.actor"
FeedUsernameSuffix = "-feed"
)