2021-06-08 20:58:19 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2022-02-26 06:11:42 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2021-06-08 20:58:19 +00: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
|