Skip to content

Commit

Permalink
Drop magic-public-key from webfinger replies as it's only used for OS…
Browse files Browse the repository at this point in the history
…tatus (mastodon#11280)
  • Loading branch information
ClearlyClaire authored and hiyuki2578 committed Oct 2, 2019
1 parent 98624e4 commit 11e5c4e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion app/serializers/webfinger_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def links
{ rel: 'http://webfinger.net/rel/profile-page', type: 'text/html', href: short_account_url(object) },
{ rel: 'http://schemas.google.com/g/2010#updates-from', type: 'application/atom+xml', href: account_url(object, format: 'atom') },
{ rel: 'self', type: 'application/activity+json', href: account_url(object) },
{ rel: 'magic-public-key', href: "data:application/magic-public-key,#{object.magic_key}" },
{ rel: 'http://ostatus.org/schema/1.0/subscribe', template: "#{authorize_interaction_url}?uri={uri}" },
]
end
Expand Down
5 changes: 0 additions & 5 deletions app/views/well_known/webfinger/show.xml.ruby
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ doc << Ox::Element.new('XRD').tap do |xrd|
link['href'] = account_url(@account)
end

xrd << Ox::Element.new('Link').tap do |link|
link['rel'] = 'magic-public-key'
link['href'] = "data:application/magic-public-key,#{@account.magic_key}"
end

xrd << Ox::Element.new('Link').tap do |link|
link['rel'] = 'http://ostatus.org/schema/1.0/subscribe'
link['template'] = "#{authorize_interaction_url}?acct={uri}"
Expand Down

0 comments on commit 11e5c4e

Please sign in to comment.