aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/schemas/app_create_request.ex
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2020-04-27 14:33:00 +0400
committerEgor Kislitsyn <egor@kislitsyn.com>2020-04-27 14:33:00 +0400
commitf1ca917bb0d733445657e0be92440dedc2f8d3c6 (patch)
tree175db64bc7d9c32bc5c2f2e7b443daa040e4d65c /lib/pleroma/web/api_spec/schemas/app_create_request.ex
parent1b06a27746ccbbdec77b7bc1571783a64ade4431 (diff)
parent01cc93b6873b5c50c0fc54774a3b004bf660e46b (diff)
downloadpleroma-f1ca917bb0d733445657e0be92440dedc2f8d3c6.tar.gz
Merge branch 'develop' into openapi/account
Diffstat (limited to 'lib/pleroma/web/api_spec/schemas/app_create_request.ex')
-rw-r--r--lib/pleroma/web/api_spec/schemas/app_create_request.ex37
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/pleroma/web/api_spec/schemas/app_create_request.ex b/lib/pleroma/web/api_spec/schemas/app_create_request.ex
deleted file mode 100644
index 7e92205cf..000000000
--- a/lib/pleroma/web/api_spec/schemas/app_create_request.ex
+++ /dev/null
@@ -1,37 +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.AppCreateRequest do
- alias OpenApiSpex.Schema
- require OpenApiSpex
-
- OpenApiSpex.schema(%{
- title: "AppCreateRequest",
- description: "POST body for creating an app",
- type: :object,
- properties: %{
- client_name: %Schema{type: :string, description: "A name for your application."},
- redirect_uris: %Schema{
- type: :string,
- description:
- "Where the user should be redirected after authorization. To display the authorization code to the user instead of redirecting to a web page, use `urn:ietf:wg:oauth:2.0:oob` in this parameter."
- },
- scopes: %Schema{
- type: :string,
- description: "Space separated list of scopes. If none is provided, defaults to `read`."
- },
- website: %Schema{
- type: :string,
- description: "A URL to the homepage of your app",
- format: :uri
- }
- },
- required: [:client_name, :redirect_uris],
- example: %{
- "client_name" => "My App",
- "redirect_uris" => "https://myapp.com/auth/callback",
- "website" => "https://myapp.com/"
- }
- })
-end