1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-09 14:05:53 +00:00

fix(FEP-bebd): do not allow Follow instrument to be webfinger mention (#866)

as per https://activitypub.space/post/2026

Co-authored-by: MaddyUnderStars <46743919+MaddyUnderStars@users.noreply.github.com>
Reviewed-on: https://codeberg.org/fediverse/fep/pulls/866
This commit is contained in:
Madeline
2026-06-21 21:48:08 +02:00
committed by silverpill
parent d2513b03cb
commit e07cc7fe22
+2 -2
View File
@@ -46,7 +46,7 @@ As InviteCodes can be dereferenced via Webfinger, they MUST be unique per instan
### Follow Activities using an InviteCode
A Follow activity MAY include the ID of an InviteCode OR its Webfinger mention in the `instrument` field.
A Follow activity MAY include the ID of an InviteCode in the `instrument` field.
```json
{
@@ -54,7 +54,7 @@ A Follow activity MAY include the ID of an InviteCode OR its Webfinger mention i
"type": "Follow",
"actor": "https://example.com/myActor",
"object": "https://remote.example/remoteActor",
"instrument": "ABCDE@remote.example",
"instrument": "https://remote.example/remoteInvite",
}
```