Revert "Pleroma.Web.MastodonAPI.DomainBlockController: dialyzer errors"

This reverts commit 378edeaf15.
This commit is contained in:
Mark Felder 2024-01-30 14:13:23 -05:00
parent a3426fcaf3
commit 41493bd642
2 changed files with 4 additions and 4 deletions

View file

@ -73,10 +73,10 @@ defmodule Pleroma.Web.ApiSpec.DomainBlockOperation do
%Schema{
type: :object,
properties: %{
"domain" => %Schema{type: :string}
domain: %Schema{type: :string}
}
},
required: true,
required: false,
example: %{
"domain" => "facebook.com"
}

View file

@ -27,7 +27,7 @@ defmodule Pleroma.Web.MastodonAPI.DomainBlockController do
end
@doc "POST /api/v1/domain_blocks"
def create(%{assigns: %{user: blocker}, body_params: %{"domain" => domain}} = conn, _params) do
def create(%{assigns: %{user: blocker}, body_params: %{domain: domain}} = conn, _params) do
User.block_domain(blocker, domain)
json(conn, %{})
end
@ -38,7 +38,7 @@ defmodule Pleroma.Web.MastodonAPI.DomainBlockController do
end
@doc "DELETE /api/v1/domain_blocks"
def delete(%{assigns: %{user: blocker}, body_params: %{"domain" => domain}} = conn, _params) do
def delete(%{assigns: %{user: blocker}, body_params: %{domain: domain}} = conn, _params) do
User.unblock_domain(blocker, domain)
json(conn, %{})
end