aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/schemas/app_create_request.ex
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-04-24 16:10:43 +0000
committerlain <lain@soykaf.club>2020-04-24 16:10:43 +0000
commitd862c7156a1edcdc89425143901f140bc0b1f5eb (patch)
treee5f3e28956e01930ff4c21ac982733ef718645d5 /lib/pleroma/web/api_spec/schemas/app_create_request.ex
parent2430b9bf90d6fde71885f5f0f8be767526be6208 (diff)
parentf362836742aabd5b60b92c1296f2bbb6d83a3d59 (diff)
downloadpleroma-d862c7156a1edcdc89425143901f140bc0b1f5eb.tar.gz
Merge branch 'openapi-improvements' into 'develop'
Support validation for inline OpenAPI schema and automatic tests for examples Closes #1696 See merge request pleroma/pleroma!2421
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.ex33
1 files changed, 0 insertions, 33 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 8a83abef3..000000000
--- a/lib/pleroma/web/api_spec/schemas/app_create_request.ex
+++ /dev/null
@@ -1,33 +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"}
- },
- required: [:client_name, :redirect_uris],
- example: %{
- "client_name" => "My App",
- "redirect_uris" => "https://myapp.com/auth/callback",
- "website" => "https://myapp.com/"
- }
- })
-end