mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-11 03:21:12 +00:00
Remove validation for cc fields on Follow Accept/Reject
This commit is contained in:
parent
fcda1b5e2a
commit
526a57ff9f
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.AcceptRejectValidator do
|
|||
|
||||
defp validate_data(cng) do
|
||||
cng
|
||||
|> validate_required([:id, :type, :actor, :to, :cc, :object])
|
||||
|> validate_required([:id, :type, :actor, :to, :object])
|
||||
|> validate_inclusion(:type, ["Accept", "Reject"])
|
||||
|> validate_actor_presence()
|
||||
|> validate_object_presence(allowed_types: ["Follow"])
|
||||
|
|
Loading…
Reference in a new issue