diff options
author | lain <lain@soykaf.club> | 2020-04-27 12:07:08 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-04-27 12:07:08 +0200 |
commit | c86143ed73ba5b2d8d373607ca706f1a428f3fe4 (patch) | |
tree | e86641043e676803ffc27a57ce23c29a71347063 /lib/pleroma/web/api_spec/schemas/domain_block_request.ex | |
parent | a51cdafc0192b66ce75659b424a690f52c9b2a49 (diff) | |
parent | 01cc93b6873b5c50c0fc54774a3b004bf660e46b (diff) | |
download | pleroma-c86143ed73ba5b2d8d373607ca706f1a428f3fe4.tar.gz |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
Diffstat (limited to 'lib/pleroma/web/api_spec/schemas/domain_block_request.ex')
-rw-r--r-- | lib/pleroma/web/api_spec/schemas/domain_block_request.ex | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/domain_block_request.ex b/lib/pleroma/web/api_spec/schemas/domain_block_request.ex deleted file mode 100644 index ee9238361..000000000 --- a/lib/pleroma/web/api_spec/schemas/domain_block_request.ex +++ /dev/null @@ -1,20 +0,0 @@ -# Pleroma: A lightweight social networking server -# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/> -# SPDX-License-Identifier: AGPL-3.0-only - -defmodule Pleroma.Web.ApiSpec.Schemas.DomainBlockRequest do - alias OpenApiSpex.Schema - require OpenApiSpex - - OpenApiSpex.schema(%{ - title: "DomainBlockRequest", - type: :object, - properties: %{ - domain: %Schema{type: :string} - }, - required: [:domain], - example: %{ - "domain" => "facebook.com" - } - }) -end |