Browse Source

activitypub: user view: add oauthRegistrationEndpoint to user profiles

tags/v1.1.4
William Pitcock 5 years ago
parent
commit
29e946ace4
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      lib/pleroma/web/activity_pub/views/user_view.ex

+ 1
- 0
lib/pleroma/web/activity_pub/views/user_view.ex View File

@@ -18,6 +18,7 @@ defmodule Pleroma.Web.ActivityPub.UserView do
def render("endpoints.json", %{user: %User{local: true} = _user}) do
%{
"oauthAuthorizationEndpoint" => "#{Pleroma.Web.Endpoint.url()}/oauth/authorize",
"oauthRegistrationEndpoint" => "#{Pleroma.Web.Endpoint.url()}/api/v1/apps",
"oauthTokenEndpoint" => "#{Pleroma.Web.Endpoint.url()}/oauth/token"
}
|> Map.merge(render("endpoints.json", %{user: nil}))


Loading…
Cancel
Save