2021-06-08 14:58:19 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 04:11:47 -07:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2021-06-08 14:58:19 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.AdminAPI.UserView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
alias Pleroma.Web.AdminAPI
|
|
|
|
|
|
|
|
def render(view, opts), do: AdminAPI.AccountView.render(view, opts)
|
|
|
|
end
|