mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-04 15:43:11 +00:00
Merge branch 'fix/tusk' into 'develop'
Fix signin and initial loading with Tusk See merge request pleroma/pleroma!333
This commit is contained in:
commit
14a762a213
|
@ -1188,4 +1188,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|||
json(conn, [])
|
||||
end
|
||||
end
|
||||
|
||||
def filters(conn, _) do
|
||||
json(conn, [])
|
||||
end
|
||||
end
|
||||
|
|
|
@ -75,8 +75,10 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|||
followed_by: User.following?(target, user),
|
||||
blocking: User.blocks?(user, target),
|
||||
muting: false,
|
||||
muting_notifications: false,
|
||||
requested: false,
|
||||
domain_blocking: false
|
||||
domain_blocking: false,
|
||||
showing_reblogs: false
|
||||
}
|
||||
end
|
||||
|
||||
|
|
|
@ -162,6 +162,8 @@ defmodule Pleroma.Web.Router do
|
|||
delete("/filters/:id", MastodonAPIController, :delete_filter)
|
||||
|
||||
get("/suggestions", MastodonAPIController, :suggestions)
|
||||
|
||||
get("/filters", MastodonAPIController, :filters)
|
||||
end
|
||||
|
||||
scope "/api/web", Pleroma.Web.MastodonAPI do
|
||||
|
|
|
@ -123,8 +123,10 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
|
|||
followed_by: false,
|
||||
blocking: true,
|
||||
muting: false,
|
||||
muting_notifications: false,
|
||||
requested: false,
|
||||
domain_blocking: false
|
||||
domain_blocking: false,
|
||||
showing_reblogs: false
|
||||
}
|
||||
|
||||
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
|
||||
|
|
Loading…
Reference in a new issue