25 lines
688 B
Elixir
25 lines
688 B
Elixir
|
# Pleroma: A lightweight social networking server
|
||
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
||
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
defmodule Pleroma.Web.PleromaAPI.BackupView do
|
||
|
use Pleroma.Web, :view
|
||
|
|
||
|
alias Pleroma.Backup
|
||
|
alias Pleroma.Web.CommonAPI.Utils
|
||
|
|
||
|
def render("show.json", %{backup: %Backup{} = backup}) do
|
||
|
%{
|
||
|
content_type: backup.content_type,
|
||
|
file_name: backup.file_name,
|
||
|
file_size: backup.file_size,
|
||
|
processed: backup.processed,
|
||
|
inserted_at: Utils.to_masto_date(backup.inserted_at)
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def render("index.json", %{backups: backups}) do
|
||
|
render_many(backups, __MODULE__, "show.json")
|
||
|
end
|
||
|
end
|