summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/twitter_api/views/token_view.ex
blob: 99884e7144836afe8f08da15d2710a137208ab7d (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-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.TwitterAPI.TokenView do
  use Pleroma.Web, :view

  def render("index.json", %{tokens: tokens}) do
    tokens
    |> render_many(Pleroma.Web.TwitterAPI.TokenView, "show.json")
    |> Enum.filter(&Enum.any?/1)
  end

  def render("show.json", %{token: token_entry}) do
    %{
      id: token_entry.id,
      valid_until: token_entry.valid_until,
      app_name: token_entry.app.client_name
    }
  end
end