diff options
author | Yonle <yonle@lecturify.net> | 2023-12-15 07:13:31 +0700 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2023-12-15 09:55:06 +0400 |
commit | cb1b52d980e23c7d4f06dda5891bd2cbbdafeb95 (patch) | |
tree | 185123ec1f25c4e4d76ad1ac601d9f06cc80c7d9 | |
parent | 02acf7c0b3e6711262f9f57cfc0554ce8e4ed50d (diff) | |
download | pleroma-cb1b52d980e23c7d4f06dda5891bd2cbbdafeb95.tar.gz pleroma-cb1b52d980e23c7d4f06dda5891bd2cbbdafeb95.zip |
ap userview: add outbox field.
Signed-off-by: Yonle <yonle@lecturify.net>
-rw-r--r-- | changelog.d/add-outbox.fix | 1 | ||||
-rw-r--r-- | lib/pleroma/web/activity_pub/views/user_view.ex | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/add-outbox.fix b/changelog.d/add-outbox.fix new file mode 100644 index 000000000..f3de5338d --- /dev/null +++ b/changelog.d/add-outbox.fix @@ -0,0 +1 @@ +ap userview: add outbox field. diff --git a/lib/pleroma/web/activity_pub/views/user_view.ex b/lib/pleroma/web/activity_pub/views/user_view.ex index f69fca075..24ee683ae 100644 --- a/lib/pleroma/web/activity_pub/views/user_view.ex +++ b/lib/pleroma/web/activity_pub/views/user_view.ex @@ -46,6 +46,7 @@ defmodule Pleroma.Web.ActivityPub.UserView do "following" => "#{user.ap_id}/following", "followers" => "#{user.ap_id}/followers", "inbox" => "#{user.ap_id}/inbox", + "outbox" => "#{user.ap_id}/outbox", "name" => "Pleroma", "summary" => "An internal service actor for this Pleroma instance. No user-serviceable parts inside.", |