mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
a6d85003fe
Grabbed from https://git.pleroma.social/pleroma/pleroma/-/merge_requests/3587 Co-authored-by: Tusooa Zhu <tusooa@kazv.moe> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/198 Co-authored-by: Norm <normandy@biribiri.dev> Co-committed-by: Norm <normandy@biribiri.dev>
32 lines
837 B
Elixir
32 lines
837 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.TwitterAPI.UtilView do
|
|
use Pleroma.Web, :view
|
|
import Phoenix.HTML
|
|
import Phoenix.HTML.Form
|
|
import Phoenix.HTML.Link
|
|
alias Pleroma.Config
|
|
alias Pleroma.Web.Endpoint
|
|
alias Pleroma.Web.Gettext
|
|
|
|
def status_net_config(instance) do
|
|
"""
|
|
<config>
|
|
<site>
|
|
<name>#{Keyword.get(instance, :name)}</name>
|
|
<site>#{Endpoint.url()}</site>
|
|
<textlimit>#{Keyword.get(instance, :limit)}</textlimit>
|
|
<closed>#{!Keyword.get(instance, :registrations_open)}</closed>
|
|
</site>
|
|
</config>
|
|
"""
|
|
end
|
|
|
|
def render("frontend_configurations.json", _) do
|
|
Config.get(:frontend_configurations, %{})
|
|
|> Enum.into(%{})
|
|
end
|
|
end
|