Merge branch 'well-known' into 'develop'
NodeInfo: Accept application/activity+json requests See merge request pleroma/pleroma!4242
This commit is contained in:
commit
bb0cb06d8a
3 changed files with 15 additions and 1 deletions
|
|
@ -24,6 +24,19 @@ defmodule Pleroma.Web.NodeInfoTest do
|
|||
|> get(href)
|
||||
|> json_response(200)
|
||||
end)
|
||||
|
||||
accept_types = [
|
||||
"application/activity+json",
|
||||
"application/json",
|
||||
"application/jrd+json"
|
||||
]
|
||||
|
||||
for type <- accept_types do
|
||||
conn
|
||||
|> put_req_header("accept", type)
|
||||
|> get("/.well-known/nodeinfo")
|
||||
|> json_response(200)
|
||||
end
|
||||
end
|
||||
|
||||
test "nodeinfo shows staff accounts", %{conn: conn} do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue