forked from AkkomaGang/akkoma
mastodon api: report version as the Mastodon API version supported with the real version in parenthesis
This commit is contained in:
parent
52a1a40d7d
commit
1857f403be
1 changed files with 2 additions and 1 deletions
|
@ -102,13 +102,14 @@ def user(conn, %{"id" => id}) do
|
|||
end
|
||||
|
||||
@instance Application.get_env(:pleroma, :instance)
|
||||
@mastodon_api_level "2.3.3"
|
||||
|
||||
def masto_instance(conn, _params) do
|
||||
response = %{
|
||||
uri: Web.base_url(),
|
||||
title: Keyword.get(@instance, :name),
|
||||
description: "A Pleroma instance, an alternative fediverse server",
|
||||
version: Keyword.get(@instance, :version),
|
||||
version: "#{@mastodon_api_level} (compatible; #{Keyword.get(@instance, :version)})",
|
||||
email: Keyword.get(@instance, :email),
|
||||
urls: %{
|
||||
streaming_api: String.replace(Web.base_url(), ["http", "https"], "wss")
|
||||
|
|
Loading…
Reference in a new issue