2020-04-07 12:18:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-04-07 12:18:23 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ApiSpec.Schemas.VisibilityScope do
|
|
|
|
require OpenApiSpex
|
|
|
|
|
|
|
|
OpenApiSpex.schema(%{
|
|
|
|
title: "VisibilityScope",
|
|
|
|
description: "Status visibility",
|
|
|
|
type: :string,
|
2020-11-11 14:47:57 +00:00
|
|
|
enum: ["public", "unlisted", "local", "private", "direct", "list"]
|
2020-04-07 12:18:23 +00:00
|
|
|
})
|
|
|
|
end
|