aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/activitypub/actor.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/activitypub/actor.ts')
-rw-r--r--server/models/activitypub/actor.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/models/activitypub/actor.ts b/server/models/activitypub/actor.ts
index 49f82023b..2fceb21dd 100644
--- a/server/models/activitypub/actor.ts
+++ b/server/models/activitypub/actor.ts
@@ -444,6 +444,7 @@ export class ActorModel extends Model<ActorModel> {
444 id: this.url, 444 id: this.url,
445 following: this.getFollowingUrl(), 445 following: this.getFollowingUrl(),
446 followers: this.getFollowersUrl(), 446 followers: this.getFollowersUrl(),
447 playlists: this.getPlaylistsUrl(),
447 inbox: this.inboxUrl, 448 inbox: this.inboxUrl,
448 outbox: this.outboxUrl, 449 outbox: this.outboxUrl,
449 preferredUsername: this.preferredUsername, 450 preferredUsername: this.preferredUsername,
@@ -494,6 +495,10 @@ export class ActorModel extends Model<ActorModel> {
494 return this.url + '/followers' 495 return this.url + '/followers'
495 } 496 }
496 497
498 getPlaylistsUrl () {
499 return this.url + '/playlists'
500 }
501
497 getPublicKeyUrl () { 502 getPublicKeyUrl () {
498 return this.url + '#main-key' 503 return this.url + '#main-key'
499 } 504 }