aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/admin_api/views/config_view.ex
blob: 49add0b6e286a98e434daf8f617bc1f237a17e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.AdminAPI.ConfigView do
  use Pleroma.Web, :view

  def render("index.json", %{configs: configs}) do
    %{
      configs: render_many(configs, __MODULE__, "show.json", as: :config)
    }
  end

  def render("show.json", %{config: config}) do
    %{
      key: config.key,
      group: config.group,
      value: Pleroma.Web.AdminAPI.Config.from_binary_with_convert(config.value)
    }
  end
end