mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
30 lines
931 B
Elixir
30 lines
931 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.ApiSpec.Schemas.Emoji do
|
|
alias OpenApiSpex.Schema
|
|
|
|
require OpenApiSpex
|
|
|
|
OpenApiSpex.schema(%{
|
|
title: "Emoji",
|
|
description: "Response schema for an emoji",
|
|
type: :object,
|
|
properties: %{
|
|
shortcode: %Schema{type: :string},
|
|
url: %Schema{type: :string, format: :uri},
|
|
static_url: %Schema{type: :string, format: :uri},
|
|
visible_in_picker: %Schema{type: :boolean}
|
|
},
|
|
example: %{
|
|
"shortcode" => "fatyoshi",
|
|
"url" =>
|
|
"https://files.mastodon.social/custom_emojis/images/000/023/920/original/e57ecb623faa0dc9.png",
|
|
"static_url" =>
|
|
"https://files.mastodon.social/custom_emojis/images/000/023/920/static/e57ecb623faa0dc9.png",
|
|
"visible_in_picker" => true
|
|
}
|
|
})
|
|
end
|