Skip to content

Commit

Permalink
fep 2c59
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyUnderStars committed Feb 20, 2024
1 parent c06438f commit 9f584b6
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/model-interfaces/actors/actor.interface.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { APObject } from "../common/object.interface";
import {
EndpointsField,
FollowersField,
FollowingField,
InboxField,
LikedField,
OutboxField,
PreferredUsernameMapField,
PreferredUsernameField,
PreferredUsernameMapField,
StreamsField,
EndpointsField,
} from "../../fields";
import { APObject } from "../common/object.interface";

export interface APActor extends APObject {
/*
Expand Down Expand Up @@ -117,4 +117,11 @@ export interface APActor extends APObject {
/** The RSA public key. */
publicKeyPem: string;
};

/**
* FEP-2c59: Discovery of a Webfinger address from an ActivityPub actor
* https://codeberg.org/fediverse/fep/src/branch/main/fep/2c59/fep-2c59.md
* @context: https://purl.archive.org/socialweb/webfinger
*/
webfinger?: string;
}

0 comments on commit 9f584b6

Please sign in to comment.