summaryrefslogtreecommitdiff
path: root/lib/pleroma/plugs/user_fetcher_plug.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pleroma/plugs/user_fetcher_plug.ex')
-rw-r--r--lib/pleroma/plugs/user_fetcher_plug.ex21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/pleroma/plugs/user_fetcher_plug.ex b/lib/pleroma/plugs/user_fetcher_plug.ex
deleted file mode 100644
index 235c77d85..000000000
--- a/lib/pleroma/plugs/user_fetcher_plug.ex
+++ /dev/null
@@ -1,21 +0,0 @@
-# Pleroma: A lightweight social networking server
-# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
-# SPDX-License-Identifier: AGPL-3.0-only
-
-defmodule Pleroma.Plugs.UserFetcherPlug do
- alias Pleroma.User
- import Plug.Conn
-
- def init(options) do
- options
- end
-
- def call(conn, _options) do
- with %{auth_credentials: %{username: username}} <- conn.assigns,
- %User{} = user <- User.get_by_nickname_or_email(username) do
- assign(conn, :auth_user, user)
- else
- _ -> conn
- end
- end
-end