mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
26 lines
678 B
Elixir
26 lines
678 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.AdminAPI.InviteView do
|
|
use Pleroma.Web, :view
|
|
|
|
def render("index.json", %{invites: invites}) do
|
|
%{
|
|
invites: render_many(invites, __MODULE__, "show.json", as: :invite)
|
|
}
|
|
end
|
|
|
|
def render("show.json", %{invite: invite}) do
|
|
%{
|
|
"id" => invite.id,
|
|
"token" => invite.token,
|
|
"used" => invite.used,
|
|
"expires_at" => invite.expires_at,
|
|
"uses" => invite.uses,
|
|
"max_use" => invite.max_use,
|
|
"invite_type" => invite.invite_type
|
|
}
|
|
end
|
|
end
|